mirror of
https://github.com/gradle/actions.git
synced 2025-04-19 17:29:20 +08:00
Add workflow to combine wrapperbot PRs
This commit is contained in:
parent
35af9b8791
commit
ce25fde741
23
.github/workflows/ci-combine-bot-prs.yml
vendored
Normal file
23
.github/workflows/ci-combine-bot-prs.yml
vendored
Normal 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 }}
|
Loading…
x
Reference in New Issue
Block a user