Skip to content

Commit

Permalink
Add workflow to combine dependency update prs (#2093)
Browse files Browse the repository at this point in the history
  • Loading branch information
sainak authored Apr 28, 2024
1 parent d2d1d2c commit 1ed6c07
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/combine-dependencies.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Combine Dependencies

on: workflow_dispatch

# The minimum permissions required to run this Action
permissions:
contents: write
pull-requests: write
checks: read

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

steps:
- name: Combine dependencies
id: combine-dependencies
uses: github/combine-prs@v5.0.0
with:
pr_title: Combined dependencies # The title of the pull request to create
select_label: dependencies # The label which marks PRs that should be combined.
labels: combined-dependencies # Add a label to the combined PR
ci_required: "false" # Whether or not CI should be passing to combine the PR

0 comments on commit 1ed6c07

Please sign in to comment.