From 05e56305dccf515cdad6820fc7872b58bb0a5542 Mon Sep 17 00:00:00 2001 From: Jacob Coffee Date: Thu, 19 Sep 2024 11:20:53 -0500 Subject: [PATCH] ci: add pr combiner --- .github/workflows/combine-dependabot-prs.yml | 21 ++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/combine-dependabot-prs.yml diff --git a/.github/workflows/combine-dependabot-prs.yml b/.github/workflows/combine-dependabot-prs.yml new file mode 100644 index 000000000..c5ababfa9 --- /dev/null +++ b/.github/workflows/combine-dependabot-prs.yml @@ -0,0 +1,21 @@ +name: Combine Dependabot PRs + +on: + workflow_dispatch: + schedule: + - cron: "0 7 * * 1" + +jobs: + combine-prs: + permissions: + contents: write + pull-requests: write + checks: read + runs-on: ubuntu-latest + steps: + - name: combine-prs + id: combine-prs + uses: github/combine-prs@v5.1.0 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + labels: dependencies