From 33b577b714f7da02beb4a3b628c5465d1201f4ef Mon Sep 17 00:00:00 2001 From: James Netherton Date: Tue, 4 Jun 2024 15:52:12 +0100 Subject: [PATCH] Fix auto label workflow GraphQL query --- .github/workflows/label-issue.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/label-issue.yaml b/.github/workflows/label-issue.yaml index 176ff274c922..7ea2b1369af3 100644 --- a/.github/workflows/label-issue.yaml +++ b/.github/workflows/label-issue.yaml @@ -137,7 +137,7 @@ jobs: // Check to see if labels already exist, and if not, create them so we can set the color const labelQuery = `{ repository(owner: "${context.repo.owner}", name: "${context.repo.repo}") { - labels(first: 50, query: "name: ${Array.from(labels).join(' ')}") { + labels(first: 50, query: "name: ${Array.from(labels).join(' || ')}") { nodes { name }