We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d58efe commit 1f22d3dCopy full SHA for 1f22d3d
.github/workflows/combine-prs.yml
@@ -16,7 +16,11 @@ on:
16
combineBranchName:
17
description: 'Name of the branch to combine PRs into'
18
required: true
19
- default: 'combine-prs-branch'
+ default: 'combined-dependencies'
20
+ combinePullRequestTitle:
21
+ description: 'Title of the combined Pull Request'
22
+ required: true
23
+ default: 'Dependency Rollup'
24
ignoreLabel:
25
description: 'Exclude PRs with this label'
26
@@ -145,7 +149,7 @@ jobs:
145
149
await github.rest.pulls.create({
146
150
owner: context.repo.owner,
147
151
repo: context.repo.repo,
148
- title: 'Combined PR',
152
+ title: '${{ github.event.inputs.combinePullRequestTitle }}',
153
head: '${{ github.event.inputs.combineBranchName }}',
154
base: baseBranch,
155
body: body
0 commit comments