Combine PRs #3
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: | |
workflow_dispatch: | |
inputs: | |
branchPrefix: | |
description: 'Branch prefix to find combinable PRs based on' | |
required: true | |
default: 'dependabot' | |
combineBranchName: | |
description: 'Name of the branch to combine PRs into' | |
required: true | |
default: 'combined-dependabot' | |
ignoreLabel: | |
description: 'Exclude PRs with this label' | |
required: true | |
default: 'nocombine' | |
jobs: | |
call-workflow: | |
uses: Orfium/orfium-github-actions/.github/workflows/fe-combine-dependabot-prs.yml@master | |
with: | |
branchPrefix: github.event.inputs.branchPrefix | |
combineBranchName: github.event.inputs.combineBranchName | |
ignoreLabel: github.event.inputs.ignoreLabel | |
secrets: | |
token: ${{ secrets.DEPENDABOT_ACCESS_TOKEN }} |