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

Commit

Permalink
Add Workflow to combine Dependabot PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
akash1810 committed Jun 22, 2023
1 parent da72988 commit 8e6da97
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/combine-prs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
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:
- name: combine-prs
id: combine-prs
uses: github/combine-prs@v3.1.1
with:
pr_title: 'chore(deps): Combine PRs'
labels: 'dependencies'

0 comments on commit 8e6da97

Please # to comment.