+ refinement and reorganizing documents #95
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] | |
jobs: | |
sync_docs: | |
name: Sync docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout current version | |
uses: actions/checkout@v2 | |
- name: Sync with local action | |
uses: kai-tub/external-repo-sync-action@v1 | |
with: | |
commit-message: "[Action BOT] Auto-sync Wiki From ./docs" | |
source-directory: "./docs" | |
env: | |
GH_ACCESS_TOKEN: ${{ secrets.JACK_GITHUB_TOKEN }} |