This repository has been archived by the owner on Dec 29, 2023. It is now read-only.
Sync scaffold #27
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: Sync scaffold | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 */15 * *" # every 15 days | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
sync_scaffold: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout current repo | |
uses: actions/checkout@v3 | |
- name: Run sync_scaffold script | |
run: | | |
git config user.name "Docsite Preview Bot" | |
git config user.email "" | |
./sync_scaffold.sh | |
./.github/git_push.sh ${{ github.ref_name }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |