Conversation
Contributor
|
Warning You have reached your daily quota limit. Please wait up to 24 hours and I will start processing your requests again! |
0a3fb05 to
0c9d504
Compare
0c9d504 to
99c09ab
Compare
99c09ab to
2618bd7
Compare
Contributor
Author
|
@averikitsch what do you think about adding both the automated and schedule? Or should we start with the automated for now? (removing the scheduled workflow) to keep it simpler. |
averikitsch
reviewed
Dec 20, 2025
| REPOSITORY: '${{ github.repository }}' | ||
| AVAILABLE_LABELS: '${{ steps.get_labels.outputs.available_labels }}' | ||
| with: | ||
| gcp_workload_identity_provider: '${{ vars.GCP_WIF_PROVIDER }}' |
Contributor
There was a problem hiding this comment.
Are we setting this up?
averikitsch
reviewed
Dec 20, 2025
Contributor
Author
|
currently setting up vars and secrets for this. |
| let parsedLabels; | ||
|
|
||
| try { | ||
| const jsonMatch = rawLabels.match(/```json\s*([\s\S]*?)\s*```/); |
Contributor
There was a problem hiding this comment.
Should this be rawOutput.match() instead?
| echo "📅 Bulk Mode: Running full triage scan..." | ||
| echo '🔍 Finding issues without labels...' | ||
| NO_LABEL_ISSUES="$(gh issue list --repo "${GITHUB_REPOSITORY}" \ | ||
| --search 'is:open is:issue no:label' --json number,title,body)" |
Contributor
There was a problem hiding this comment.
Should we make this search more specific to find issues which do not have a priority / triage label?
Edge case - Would it fail in the scenario that a new issue is opened and the author adds a bug / question / etc. tag?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Added issue triage workflows. Consolidated the automated and scheduled issue triage workflow from gemini-cli repo.
The workflow will be triggered with the following:
need-triagelabel.This workflow will do the following:
need-triagelabel).product:label,type:label, andpriority:label that best matches the issue.priority: p0label, it will add astatus: manual-triagelabel with a note so that maintainer can manually check those issues.priority:label, it will also apply thestatus: manual-triagelabel.status: need-triagelabel.product:label (if set by the bot).With this, this PR added a couple of labels:
This PR also updated docs to
CONTRIBUTING.mdfor new sources to add their labels.