Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(upgrade): add labels input parameter #254

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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