Skip to content

Commit

Permalink
Adding github workflow to combine dependabot PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
aidenvaines-bjss committed Sep 2, 2024
1 parent 0c86a44 commit 94ff73b
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/manual-combine-dependabot-prs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Combine Dependabot PRs

on:
workflow_dispatch:

permissions:
contents: write
pull-requests: write
checks: read

jobs:
combine-prs:
runs-on: ubuntu-latest

steps:
- name: combine-prs
id: combine-prs
uses: github/[email protected]
with:
ci_required: false
labels: dependencies
pr_title: Combined Dependabot PRs
combine_branch_name: dependabotCombined
pr_body_header: Combined Dependabot PRs

0 comments on commit 94ff73b

Please sign in to comment.