Skip to content

Commit

Permalink
feat(upgrade): add labels input parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
simonostendorf committed Sep 1, 2024
1 parent 64a8690 commit 656ba8d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion upgrade/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ inputs:
description: A comma or newline separated list of GitHub reviewer usernames
required: false

labels:
description: A comma or newline separated list of GitHub labels that should be added to the PR
default: trunk
required: false

add-paths:
description: Specific paths to add to the created pull request. Comma separated.
required: false
Expand Down Expand Up @@ -148,7 +153,7 @@ runs:
body: ${{ env.PR_DESCRIPTION }}
base: ${{ inputs.base }}
branch: ${{ inputs.branch-name }}
labels: trunk
labels: ${{ inputs.labels }}
add-paths: ${{ inputs.add-paths }}
commit-message: ${{ inputs.prefix }}${{ env.PR_TITLE }}
delete-branch: true
Expand Down

0 comments on commit 656ba8d

Please sign in to comment.