Skip to content

Commit 836693f

Browse files
committed
Fix scheduled triage search query
1 parent 921e068 commit 836693f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/gemini-scheduled-triage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
echo '🔍 Finding unlabeled issues and issues marked for triage...'
7474
ISSUES="$(gh issue list \
7575
--state 'open' \
76-
--search 'no:label label:"status/needs-triage"' \
76+
--search 'no:label OR label:"status/needs-triage"' \
7777
--json number,title,body \
7878
--limit '100' \
7979
--repo "${GITHUB_REPOSITORY}"

examples/workflows/issue-triage/gemini-scheduled-triage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
echo '🔍 Finding unlabeled issues and issues marked for triage...'
7474
ISSUES="$(gh issue list \
7575
--state 'open' \
76-
--search 'no:label label:"status/needs-triage"' \
76+
--search 'no:label OR label:"status/needs-triage"' \
7777
--json number,title,body \
7878
--limit '100' \
7979
--repo "${GITHUB_REPOSITORY}"

0 commit comments

Comments
 (0)