From cd7fbd74ea49c60e1666aad33ca2c3f0ace64b4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez=20Gonzales?= Date: Wed, 29 Mar 2023 20:02:47 -0600 Subject: [PATCH] Add combine-pr workflow (#6831) --- .github/workflows/combine-prs.yml | 17 +++++++++++++++++ 1 file changed, 17 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 00000000000..d3d812b803c --- /dev/null +++ b/.github/workflows/combine-prs.yml @@ -0,0 +1,17 @@ +name: Combine PRs + +on: + workflow_dispatch: + +jobs: + combine-prs: + permissions: + contents: write + pull-requests: write + runs-on: ubuntu-latest + steps: + - name: combine-prs + id: combine-prs + uses: github/combine-prs@v2.1.0 + with: + github_token: ${{ secrets.GITHUB_TOKEN }}