Combine Dependencies #4
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 Dependencies | |
on: workflow_dispatch | |
# 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 dependencies | |
id: combine-dependencies | |
uses: github/[email protected] | |
with: | |
pr_title: Combined dependencies # The title of the pull request to create | |
select_label: dependencies # The label which marks PRs that should be combined. | |
labels: combined-dependencies # Add a label to the combined PR | |
ci_required: "false" # Whether or not CI should be passing to combine the PR |