From a67057a0e38262cb33d5a09c17af89cb63ab9835 Mon Sep 17 00:00:00 2001 From: Victor Schappert Date: Wed, 11 Dec 2024 10:43:11 -0800 Subject: [PATCH] Fix syntax error (squash this commit) --- .github/workflows/github-actions-enforce-change-type-label.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github-actions-enforce-change-type-label.yaml b/.github/workflows/github-actions-enforce-change-type-label.yaml index d3a86a4b..8f0ded57 100644 --- a/.github/workflows/github-actions-enforce-change-type-label.yaml +++ b/.github/workflows/github-actions-enforce-change-type-label.yaml @@ -27,7 +27,7 @@ jobs: if (appliedChangeTypeLabels.length === 0) { contextualMessage = 'It currently has no change type label. Add one.' } else { - contextualMessage = `It currently has ${appliedChangeTypeLabels.length} change type labels (${JSON.stringify(appliedChangeTypeLabels)}). Remove one. + contextualMessage = `It currently has ${appliedChangeTypeLabels.length} change type labels (${JSON.stringify(appliedChangeTypeLabels)}). Remove one.` } core.setFailed(baseMessage + contextualMessage); }