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: Publish Github Wiki | |
on: | |
pull_request: | |
types: [ opened, synchronize, edited, reopened ] | |
push: | |
paths: | |
- .github/wiki/** | |
branches: | |
- main | |
- chore/sc-57550-setup-wiki | |
workflow_dispatch: | |
jobs: | |
publish: | |
name: Publish Github Wiki | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Publish Github Wiki | |
uses: nimblehq/[email protected] | |
with: | |
user_name: team-nimblehq | |
user_email: [email protected] | |
user_access_token: ${{ secrets.GH_BOT_PAT }} |