Skip to content

Commit

Permalink
[CI] Add workflow to group dependabot PRs (#1233)
Browse files Browse the repository at this point in the history
  • Loading branch information
syl20bnr authored Feb 2, 2024
1 parent e2c68ad commit d4c4565
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/combine-dependabot-prs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Combine Dependabot PRs

on:
schedule:
- cron: '0 6 * * MON' # Monday at 6:00am UTC
workflow_dispatch: # allows to manually trigger the workflow as well

# 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-prs
id: combine-prs
uses: github/combine-prs@v5.0.0 # where X.X.X is the latest version
with:
labels: dependencies

0 comments on commit d4c4565

Please sign in to comment.