From ac745f419677528f2fb541b4e5d6b8b5e4098334 Mon Sep 17 00:00:00 2001 From: Jasper Furniss Date: Thu, 17 Oct 2024 10:39:30 -0400 Subject: [PATCH] Fix (#3814) **What does this PR do?** A clear and concise description with your runway ticket url. **Screenshots:** Screenshots to visualize your addition/change **How to test?** Steps to confirm the desired behavior: 1. Go to '...' 2. Click on '....' 3. Scroll down to '....' 4. See addition/change #### Checklist: - [ ] **LABELS** Add a label: `enhancement`, `bug`, `improvement`, `new kit`, `deprecated`, or `breaking`. See [Changelog & Labels](https://github.com/powerhome/playbook/wiki/Changelog-&-Labels) for details. - [ ] **DEPLOY** I have added the `milano` label to show I'm ready for a review. - [ ] **TESTS** I have added test coverage to my code. --- .github/workflows/github-actions-release-candidate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github-actions-release-candidate.yml b/.github/workflows/github-actions-release-candidate.yml index cd76ad76bd..63024049a9 100644 --- a/.github/workflows/github-actions-release-candidate.yml +++ b/.github/workflows/github-actions-release-candidate.yml @@ -31,7 +31,7 @@ jobs: if (presentRequiredLabels.length === 0) { core.setFailed('Your pull request is missing a required Semver label: (${requiredLabels.join(', ')})'); - else if (presentRequiredLabels.length > 1) { + } else if (presentRequiredLabels.length > 1) { core.setFailed('Your pull request has multiple Semver labels. Please use only one.') } else { console.log('Pull request has a required Semver label.');