From 078600cbaf6c2451f082f4a5436ba1ada620b3e6 Mon Sep 17 00:00:00 2001 From: Jason Chen <118808544+n1cogrv@users.noreply.github.com> Date: Thu, 7 Nov 2024 18:17:08 +0800 Subject: [PATCH] [feat] Combine PRs GitHub Action yaml file With the commit, a sequence of PRs created automatically by @dependabot will be combined into a new PR. --- .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 0000000..029a635 --- /dev/null +++ b/.github/workflows/combine-dependabot-prs.yml @@ -0,0 +1,21 @@ +name: Combine PRs + +on: + workflow_dispatch + +# 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@v5.2.0 + with: + labels: "dependencies"