From cf4f47d5f35c7068ad3188180c187670bbb3cc26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nathan=20V=C4=93rzemnieks?= Date: Fri, 27 Sep 2024 06:18:14 -0700 Subject: [PATCH] Add Combine PRs workflow (in the right place) (#462) --- .github/workflows/combine_prs.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/combine_prs.yml diff --git a/.github/workflows/combine_prs.yml b/.github/workflows/combine_prs.yml new file mode 100644 index 00000000..7e6bf253 --- /dev/null +++ b/.github/workflows/combine_prs.yml @@ -0,0 +1,22 @@ +name: Combine PRs + +on: + workflow_dispatch: # manual activation, for now + +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.1.0 + with: + labels: combined-pr + pr_title: "Dependabot updates" + branch_prefix: dependabot # the default, just for clarity