From 9a09fd134deba1acc274d0aa2d34fbc8569f764d Mon Sep 17 00:00:00 2001 From: Andrey Meshkov Date: Wed, 10 Aug 2022 13:34:48 +0300 Subject: [PATCH] test workflow --- .github/workflows/assign-on-label.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/assign-on-label.yml b/.github/workflows/assign-on-label.yml index 5915022e04c..367101a804c 100644 --- a/.github/workflows/assign-on-label.yml +++ b/.github/workflows/assign-on-label.yml @@ -19,7 +19,7 @@ jobs: const issueNumber = context.issue.number; const assignees = context.payload.issue.assignees.map(a => a.login); - if (labelName === 'A: In progress' && !assignees.inclues(senderName)) { + if (labelName === 'A: In progress' && !assignees.includes(senderName)) { console.log(`Adding ${senderName} to the #${issueNumber} assignees`); await github.issues.addAssignees({ owner,