Docs/Wiki Sync #46
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Docs/Wiki Sync | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "docs/**" | |
repository_dispatch: | |
types: [docs] | |
gollum: | |
env: | |
GIT_AUTHOR_NAME: Actionbot | |
GIT_AUTHOR_EMAIL: [email protected] | |
jobs: | |
job-sync-docs-to-wiki: | |
runs-on: ubuntu-latest | |
if: github.event_name != 'gollum' | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Sync docs to wiki | |
uses: newrelic/wiki-sync-action@main | |
with: | |
source: docs | |
destination: wiki | |
token: ${{ secrets.DOC_SYNC_TOKEN }} | |
gitAuthorName: ${{ env.GIT_AUTHOR_NAME }} | |
gitAuthorEmail: ${{ env.GIT_AUTHOR_EMAIL }} | |
job-sync-wiki-to-docs: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'gollum' | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.DOC_SYNC_TOKEN }} # allows us to push back to repo | |
ref: main | |
- name: Sync Wiki to Docs | |
uses: newrelic/wiki-sync-action@main | |
with: | |
source: wiki | |
destination: docs | |
token: ${{ secrets.DOC_SYNC_TOKEN }} | |
gitAuthorName: ${{ env.GIT_AUTHOR_NAME }} | |
gitAuthorEmail: ${{ env.GIT_AUTHOR_EMAIL }} | |
branch: main |