Skip to content

Commit

Permalink
Add Combine PRs workflow (in the right place) (#462)
Browse files Browse the repository at this point in the history
  • Loading branch information
njvrzm authored Sep 27, 2024
1 parent ec15d23 commit cf4f47d
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/combine_prs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Combine PRs

on:
workflow_dispatch: # manual activation, for now

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

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

steps:
- name: combine-prs
id: combine-prs
uses: github/combine-prs@v5.1.0
with:
labels: combined-pr
pr_title: "Dependabot updates"
branch_prefix: dependabot # the default, just for clarity

0 comments on commit cf4f47d

Please sign in to comment.