Skip to content

Commit

Permalink
Expose label param
Browse files Browse the repository at this point in the history
  • Loading branch information
luongvo committed Nov 24, 2023
1 parent 04ad8e6 commit f95ef04
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions create_release_pr/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,16 @@ inputs:
description: Current release version
required: true
base_branch:
description: The base branch for the release pull request
description: The base branch for the release pull request, e.g., "main"
required: true
changelogConfiguration:
description: The changelog configuration file path, e.g., ".github/workflows/config/changelog-release.json"
required: true
assignee:
description: The assignee username, e.g. bot-nimble
description: The assignee username for the Release pull request, e.g. bot-nimble
required: true
label:
description: The label for the Release pull request, e.g. "type : release"
required: true

runs:
Expand Down Expand Up @@ -56,7 +59,7 @@ runs:
--head $HEAD_BRANCH \
--assignee ${{ inputs.assignee }} \
--title "Release - ${{ inputs.version }}" \
--label 'type : release' \
--label ${{ inputs.label }} \
--milestone $MILESTONE \
--body "$MILESTONE_URL
Expand Down

0 comments on commit f95ef04

Please sign in to comment.