-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added dependabot config, and workflow to rebase dependencies branch o…
…nto which dependabot will open PRs (#136)
- Loading branch information
1 parent
91f2bb6
commit 41d8d68
Showing
2 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Automatic Rebase | ||
on: | ||
push: | ||
branches: | ||
- master | ||
jobs: | ||
rebase: | ||
name: Rebase `dependencies` with `master` | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
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 [email protected] | ||
git rebase origin/master | ||
git push origin dependencies --force |