mirror of
https://github.com/acamarata/moon-sighting.git
synced 2026-07-01 11:24:24 +00:00
23 lines
532 B
YAML
23 lines
532 B
YAML
name: Sync Wiki
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
paths:
|
|
- '.github/wiki/**'
|
|
|
|
jobs:
|
|
sync:
|
|
name: Sync .github/wiki/ to GitHub Wiki
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Sync wiki pages
|
|
uses: newrelic/wiki-sync-action@v1.0.1
|
|
with:
|
|
source: .wiki
|
|
destination: wiki
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
gitAuthorName: github-actions[bot]
|
|
gitAuthorEmail: 41898282+github-actions[bot]@users.noreply.github.com
|