Skip to content

Commit cba17a2

Browse files
authored
Add dependabot force rebase workflow (#258)
1 parent bbb6c39 commit cba17a2

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Dependabot Force Rebase
2+
on:
3+
pull_request:
4+
types: [opened, synchronize, reopened]
5+
6+
jobs:
7+
rebase:
8+
runs-on: ubuntu-latest
9+
if: github.actor == 'dependabot[bot]'
10+
permissions:
11+
contents: write # 👈 allows pushing commits to branches
12+
pull-requests: write # 👈 allows updating PR metadata
13+
steps:
14+
- uses: peter-evans/rebase@v4

0 commit comments

Comments
 (0)