Skip to content

Commit

Permalink
Fix auto label workflow GraphQL query
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesnetherton committed Jun 4, 2024
1 parent 8037be8 commit 33b577b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/label-issue.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 33b577b

Please sign in to comment.