diff --git a/.github/workflows/check-branch-name.yml b/.github/workflows/check-branch-name.yml index 60c7f3a0b..0e70cf56c 100644 --- a/.github/workflows/check-branch-name.yml +++ b/.github/workflows/check-branch-name.yml @@ -19,7 +19,7 @@ jobs: case 'main': case 'alpha': { if (!/^(hotfix|release)\/[A-Za-z0-9-_\.]+$/.test(branch)) { - console.error(`::error::Branch name must start with 'hotfix/*' or `release/*` for PRs to ${base}`) + console.error(`::error::Branch name must start with 'hotfix/*' or 'release/*' for PRs to ${base}`) process.exit(1) } break;