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 b565bac commit a85beb1Copy full SHA for a85beb1
.github/workflows/rebase.yml
@@ -0,0 +1,21 @@
1
+name: Rebase Upstream
2
+on:
3
+ schedule:
4
+ - cron: "0 0 * * 0" # run once a week
5
+ workflow_dispatch: # run manually
6
+
7
+jobs:
8
+ sync:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@master
12
+ with:
13
+ fetch-depth: 0 # fetching all history so i can rebase
14
+ token: ${{ secrets.GH_TOKEN }}
15
+ - name: Configure git for tradeshiftci
16
+ uses: tradeshift/actions-git/configure-from-gpg-key@v1
17
18
+ gpg-key: ${{ secrets.TRADESHIFTCI_GPG_KEY }}
19
+ - uses: tradeshift/rebase-upstream-action@master
20
21
+ branch: main
0 commit comments