Skip to content

Commit 89eba16

Browse files
authored
chore(release): fix invalid workflow file syntax (#3908)
Quote the 'if' condition in release_create_release_branch.yaml to fix YAML syntax error.
1 parent b5d754e commit 89eba16

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release_create_release_branch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111
jobs:
1212
cut_branch:
1313
# Run only if the issue has the type: release label
14-
if: contains(github.event.issue.labels.*.name, 'type: release')
14+
if: "contains(github.event.issue.labels.*.name, 'type: release')"
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout repository

0 commit comments

Comments
 (0)