Add agentic issue-intents triage workflow#8225
Closed
alondahari wants to merge 1 commit into
Closed
Conversation
New gh-aw installation: a native issue-intents triage workflow that runs on issues opened/reopened. It reads the issue and comments, classifies the issue type when unset, adds only existing relevant labels, flags likely duplicate/related issues, and requests missing info only when needed. Every label/type action carries a rationale + confidence via native intent-capable safe outputs; low-confidence changes are routed as suggestions rather than applied. Existing labels are preserved and issues are never auto-closed. Uses only built-in safe outputs (no custom API jobs) and skips issue-field mutations (no repo evidence of issue fields in use). Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 18b601b7-747f-480d-aef9-47f0a799b3c4
|
Contributor
Author
|
Closing because this PR was created from a superseded target list; no Primer component repositories are in scope for the stable gh-aw refresh. |
6 tasks
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.
What & why
This is a new installation of a gh-aw issue intents triage workflow on
primer/react. On issues opened/reopened, the agent reads the issue and its comments, classifies the issue type when it is unset, adds only existing relevant labels, flags likely duplicate/related issues, and asks the author for missing information only when genuinely needed.Issue intents let the triage agent attach its reasoning to each action it takes (issue type, labels) and surface a confidence level, so maintainers can see why a change was made and approve or reject low-confidence suggestions instead of having them applied silently. A key goal is to minimise the noise of agent-generated comments — rationale and confidence travel with the action itself rather than as a separate triage-report comment on the issue. Learn more: Review and approve Copilot agent actions on issues.
See it in action
issues.agentic.review.mp4
Changes
New workflow, using only built-in safe outputs (no custom GitHub API jobs):
.github/workflows/issue-triage.md+ compiledissue-triage.lock.yml.set-issue-type(allowed: Bug/Feature/Task — theprimerorg's configured issue types) andadd-labels, both withissue-intent: trueso every action carries a rationale + confidence. A singleadd-commentis reserved for missing-information requests; no routine triage report is posted.suggest: true) for maintainer approval rather than applied.set-issue-field— this repo shows no evidence of maintainers using repo/org issue fields, so field mutations are intentionally omitted.blocked, and issues are never closed automatically; the agent callsnoopwhen no visible change is needed.GH_AW_RUNTIME_FEATURES=issue_intents— set onprimer/react..github/aw/actions-lock.json(action-lock),.gitattributes, and theagentic-workflowsauthoring skill/agent.Validation
Trialled in logical mode against closed issue #7977 via
github/lukewar-gh-aw-trial(capture mode — nothing applied to the live repo). Captured safe output:{ "type": "set_issue_type", "issue_number": 7977, "issue_type": "Bug", "confidence": "HIGH", "rationale": "Issue describes reproducible incorrect behavior: PageHeader.ParentLink silently drops props like 'to' when using polymorphic 'as', breaking client-side routing." }Full run: https://github.com/github/lukewar-gh-aw-trial/actions/runs/30002450477 — six jobs green; the agent correctly typed the untyped issue as Bug with rationale + HIGH confidence, added no invented labels, and posted no routine comment.
Feature flags
The required flags (
update_issue_suggestions,update_issue_confidence_routing) are already enabled org-wide for thegithuborg.primeris a separate org — the onboarding team will enable the flags there; nothing is needed from repo maintainers.Relates to github/plan-track-agentic-toolkit#467 (rollout tracking). No per-repo sub-issue exists, so this links rather than closes it.