From be7168d9c5b833c16dec8470731d1dc4bd8605bb Mon Sep 17 00:00:00 2001 From: jamesread Date: Mon, 30 Dec 2024 01:59:27 +0000 Subject: [PATCH] cicd: Issue responsibility bugs --- .github/workflows/issue-responsibility.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/issue-responsibility.yml b/.github/workflows/issue-responsibility.yml index c20381d..a31f8c4 100644 --- a/.github/workflows/issue-responsibility.yml +++ b/.github/workflows/issue-responsibility.yml @@ -32,7 +32,7 @@ jobs: const issueLabels = context.payload.issue.labels.map(label => label.name); - if (issueLabels.includes("waiting-on-developer") { + if (issueLabels.includes("waiting-on-developer")) { if (commenterIsDeveloper) { await github.rest.issues.removeLabel({ owner, @@ -52,7 +52,7 @@ jobs: } } - if (issueLabels.includes("waiting-on-requestor") { + if (issueLabels.includes("waiting-on-requestor")) { if (commenterIsUser) { await github.rest.issues.removeLabel({ owner,