Add files via upload

This commit is contained in:
Fioren
2023-07-14 22:49:02 +07:00
committed by GitHub
parent faf1ae8a1d
commit d0f5926efc

16
.github/workflows/Sync-Fork.yaml vendored Normal file
View File

@@ -0,0 +1,16 @@
name: Automatic Sync fork
on:
schedule:
- cron: '0 0 */15 * *'
workflow_dispatch: { }
jobs:
sync:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- run: gh repo sync $REPOSITORY -b $BRANCH_NAME
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPOSITORY: ${{ github.repository }}
BRANCH_NAME: ${{ github.ref_name }}