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 91f2bb6 commit 41d8d68Copy full SHA for 41d8d68
.github/dependabot.yml
@@ -14,4 +14,5 @@ updates:
14
directory: "/"
15
schedule:
16
interval: "weekly"
17
- open-pull-requests-limit: 100
+ open-pull-requests-limit: 100
18
+ target-branch: "dependencies"
.github/workflows/rebase-dependencies.yml
@@ -0,0 +1,19 @@
1
+name: Automatic Rebase
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+jobs:
7
+ rebase:
8
+ name: Rebase `dependencies` with `master`
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v3
12
+ with:
13
+ fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
+ ref: dependencies
+ - run: |
+ git config user.name github-actions
+ git config user.email github-actions@github.com
+ git rebase origin/master
19
+ git push origin dependencies --force
0 commit comments