From ce25fde741ac26bb69d5da4b294e603561fcc9c4 Mon Sep 17 00:00:00 2001 From: daz Date: Wed, 11 Dec 2024 09:07:09 -0700 Subject: [PATCH] Add workflow to combine wrapperbot PRs --- .github/workflows/ci-combine-bot-prs.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/ci-combine-bot-prs.yml diff --git a/.github/workflows/ci-combine-bot-prs.yml b/.github/workflows/ci-combine-bot-prs.yml new file mode 100644 index 0000000..ca61075 --- /dev/null +++ b/.github/workflows/ci-combine-bot-prs.yml @@ -0,0 +1,23 @@ +name: Combine Bot PRs + +on: + schedule: + - cron: '0 4 * * *' + workflow_dispatch: + +# The minimum permissions required to run this Action +permissions: + contents: write + pull-requests: write + checks: read + +jobs: + combine-wrapperbot-prs: + if: github.repository == 'gradle/actions' + runs-on: ubuntu-latest + steps: + - name: combine-wrapperbot-prs + uses: github/combine-prs@v5 + with: + branch_regex: ^wrapperbot\/.*$ + github_token: ${{ secrets.BOT_GITHUB_TOKEN }}