Skip to content
This repository has been archived by the owner on Sep 5, 2023. It is now read-only.

Commit

Permalink
ci: Add Workflow to combine Dependabot PRs
Browse files Browse the repository at this point in the history
Attempt to bring order to Dependabot PRs by using https://github.com/marketplace/actions/combine-prs
to batch them together.

This would mean we have one PR to review, rather than multiple.
  • Loading branch information
akash1810 committed Jun 22, 2023
1 parent da72988 commit 78919f7
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/combine-prs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Combine PRs

on:
schedule:
- cron: '0 1 * * 3' # Wednesday at 01:00
workflow_dispatch: # allows you to manually trigger the workflow

permissions:
contents: write # to create a new branch and merge other branches together
pull-requests: write # to create a new PR with the combined changes
checks: read # to check if CI is passing or not before combining PRs

jobs:
combine-prs:
runs-on: ubuntu-latest
steps:
- uses: github/combine-prs@v3.1.1
with:
pr_title: 'chore(deps): Combine PRs'
labels: 'dependencies'

0 comments on commit 78919f7

Please # to comment.