18 lines
446 B
YAML
18 lines
446 B
YAML
name: "Combine Dependabot PRs"
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
combine-prs:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4.1.7
|
|
- uses: maadhattah/combine-dependabot-prs@main
|
|
with:
|
|
branchPrefix: "dependabot"
|
|
mustBeGreen: true
|
|
combineBranchName: "combined-prs"
|
|
ignoreLabel: "nocombine"
|
|
baseBranch: "main"
|
|
openPR: true
|
|
allowSkipped: false |