diff --git a/.github/workflows/combine-prs.yml b/.github/workflows/combine-prs.yml new file mode 100644 index 0000000..8e0dfac --- /dev/null +++ b/.github/workflows/combine-prs.yml @@ -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'