We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a120056 commit 860b196Copy full SHA for 860b196
.github/workflows/sync.yml
@@ -0,0 +1,15 @@
1
+name: Rebase Upstream
2
+on:
3
+ schedule:
4
+ - cron: '30 5,17 * * *'
5
+ # scheduled at 05:30 and 17:30 every day
6
+
7
+ workflow_dispatch: # click the button on GitHub repo!
8
+jobs:
9
+ sync:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ with:
14
+ fetch-depth: 10 # greater than the number of commits you made
15
+ - uses: imba-tjd/rebase-upstream-action@0.5
0 commit comments