We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41329f3 commit 03d1de1Copy full SHA for 03d1de1
.github/workflows/sync-fork.yaml
@@ -0,0 +1,16 @@
1
+name: sync-fork
2
+on:
3
+ schedule:
4
+ - cron: '4 2 * * 4,2'
5
+ workflow_dispatch:
6
+jobs:
7
+ sync-fork:
8
+ runs-on: ubuntu-latest
9
+ permissions:
10
+ contents: write
11
+ steps:
12
+ - run: gh repo sync $REPOSITORY -b $BRANCH_NAME
13
+ env:
14
+ GITHUB_TOKEN: ${{ secrets.SYNC_FORK_TOKEN }}
15
+ REPOSITORY: ${{ github.repository }}
16
+ BRANCH_NAME: ${{ github.ref_name }}
0 commit comments