From 2a1e0cdd5a8fecd09da7eb62aaed0d32c12aa07a Mon Sep 17 00:00:00 2001 From: Shui Song Luar Date: Thu, 11 Jun 2026 20:59:22 +0800 Subject: [PATCH] fix(ci): quote auto-tag if expression to avoid YAML parse error --- .github/workflows/auto-tag.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto-tag.yml b/.github/workflows/auto-tag.yml index 145c7cb..c6edc75 100644 --- a/.github/workflows/auto-tag.yml +++ b/.github/workflows/auto-tag.yml @@ -11,7 +11,7 @@ permissions: jobs: tag: name: Create release tag - if: startsWith(github.event.head_commit.message, 'chore: release v') + if: "startsWith(github.event.head_commit.message, 'chore: release v')" runs-on: ubuntu-latest steps: - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4