From 99f3edb549623ba5b0e516c18c1ec5492c3627d6 Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Mon, 6 Jul 2026 16:29:19 +0000 Subject: [PATCH] chore(release): fix invalid workflow file syntax Quote the `if` condition in `release_create_release_branch.yaml` to fix a YAML syntax error caused by the unquoted `*` character. --- .github/workflows/release_create_release_branch.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release_create_release_branch.yaml b/.github/workflows/release_create_release_branch.yaml index 4c021814d0..4cbabc7d12 100644 --- a/.github/workflows/release_create_release_branch.yaml +++ b/.github/workflows/release_create_release_branch.yaml @@ -11,7 +11,7 @@ permissions: jobs: cut_branch: # Run only if the issue has the type: release label - if: contains(github.event.issue.labels.*.name, 'type: release') + if: "contains(github.event.issue.labels.*.name, 'type: release')" runs-on: ubuntu-latest steps: - name: Checkout repository