Combine Dependabot PRs #75
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Combine Dependabot PRs | |
on: | |
schedule: | |
- cron: '0 3 * * *' | |
workflow_dispatch: | |
# The minimum permissions required to run this Action | |
permissions: | |
contents: write | |
pull-requests: write | |
checks: read | |
jobs: | |
combine-dependabot-prs: | |
if: github.repository == 'gradle/wrapper-upgrade-gradle-plugin' | |
runs-on: ubuntu-latest | |
steps: | |
- name: combine-dependabot-prs | |
uses: github/combine-prs@v3.1.1 | |
with: | |
branch_regex: ^(dependa|wrapper)bot\/.*$ | |
github_token: ${{ secrets.GH_BOT_GITHUB_TOKEN }} |