Skip to content

Commit

Permalink
Add workflow for combining PRs
Browse files Browse the repository at this point in the history
Makes it easier to deal with dependabot PRs
  • Loading branch information
Nevon committed Mar 9, 2022
1 parent 33db95c commit b84204c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/combine.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: "Combine Dependabot PRs"
on:
workflow_dispatch:

jobs:
combine-prs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: maadhattah/combine-dependabot-prs@main
with:
branchPrefix: "dependabot"
mustBeGreen: true
combineBranchName: "combined-prs"
ignoreLabel: "nocombine"
baseBranch: "master"
openPR: true
allowSkipped: false

0 comments on commit b84204c

Please sign in to comment.