Skip to content

Commit 9c63f52

Browse files
committed
fix(workflow-draft-release-hotfix-pr): fix PR is missing label pre-release
1 parent 5e57d0e commit 9c63f52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/draft_release_hotfix_pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
run: |
7171
PR_LABELS="automated-pr,${RELEASE_TYPE}-pr"
7272
73-
[[ ${PRE_RELEASE:false} == "true" ]] && ( gh label create 'pre-release' --force && PR_LABELS="$PR_LABELS,pre-release" )
73+
[[ ${PRE_RELEASE:false} == "true" ]] && gh label create 'pre-release' --force && PR_LABELS="$PR_LABELS,pre-release"
7474
7575
for LABEL in $(echo $PR_LABELS | sed "s/,/ /g"); do gh label create $LABEL --force; done
7676

0 commit comments

Comments
 (0)