Add workflow to combine wrapperbot PRs (#476)

This commit is contained in:
Daz DeBoer 2024-12-11 09:08:25 -07:00 committed by GitHub
commit fc2804f7b6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 }}