Skip to content

Commit

Permalink
chore: added automation to combine dependabot PRs
Browse files Browse the repository at this point in the history
Signed-off-by: Manuel Zedel <manuel.zedel@northern.tech>
  • Loading branch information
mzedel committed Jun 29, 2023
1 parent 2c4044a commit 1c83158
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: '30 6 3 * *' # 6:30, third day of the month, should give enough time for all PRs to be created
workflow_dispatch: # allows you to manually trigger the workflow

# 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@v3.1.1
with:
ci_required: false # to allow combining PRs with incomplete CI (e.g. mender-qa)

0 comments on commit 1c83158

Please sign in to comment.