Combine PRs #12
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 PRs | |
on: | |
schedule: | |
- cron: '0 8 * * 1' # Monday at 08:00 UTC | |
workflow_dispatch: # allows you to manually trigger the workflow | |
# The minimum permissions required to run this Action | |
permissions: | |
contents: write | |
pull-requests: write | |
checks: read | |
jobs: | |
combine-prs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: combine-prs | |
id: combine-prs | |
uses: github/[email protected] | |
with: | |
labels: combined-pr # Optional: add a label to the combined PR | |
ci_required: true # require all checks to pass before combining | |
select_label: dependencies # Optional: only combine PRs with this label | |
autoclose: false # do not close the source PRs - dependabot should handle it. |