[EngSys] Agentic Triage Workflow#49653
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR replaces the legacy JimBot-style initial issue triage with a GitHub Agentic Workflows (gh-aw) based triage workflow, adding the new issue triage prompt + compiled lock workflow, and updating repo wiring/docs to support author classification, label prediction, CODEOWNERS-based routing, and deprecated-package detection.
Changes:
- Added a new agentic issue triage workflow definition (
issue-triage.md) and its compiled GitHub Actions workflow (issue-triage.lock.yml). - Added agent/skill documentation and repo MCP configuration to support creating/debugging/upgrading gh-aw workflows.
- Disabled the legacy
InitialIssueTriagepath in the event processor configuration and marked lock files as generated/merge-ours.
Reviewed changes
Copilot reviewed 8 out of 9 changed files in this pull request and generated 7 comments.
Show a summary per file
| File | Description |
|---|---|
| .github/workflows/issue-triage.md | Source workflow prompt and safe-outputs configuration for agentic issue triage and routing. |
| .github/workflows/issue-triage.lock.yml | Generated compiled workflow consumed by GitHub Actions. |
| .github/skills/agentic-workflows/SKILL.md | Router skill for gh-aw workflow design/create/debug/upgrade requests. |
| .github/skills/agentic-workflow-designer/SKILL.md | Interview-style workflow designer skill scaffolding for gh-aw workflows. |
| .github/mcp.json | Adds repo MCP server configuration for gh aw mcp-server tools. |
| .github/event-processor.config | Disables legacy initial issue triage in the event processor. |
| .github/aw/actions-lock.json | Adds action pin entry for gh-aw setup action. |
| .github/agents/agentic-workflows.md | Adds a dispatcher agent doc for working with gh-aw in this repo. |
| .gitattributes | Marks *.lock.yml as generated and sets merge strategy to ours. |
vcolin7
reviewed
Jun 27, 2026
The focus of these changes is to move from the legacy JimBot issue triage to an agentic workflow version. This improves accuracy of labeling and adds support for identifying bot-sourced issues and issues for deprecated packages.
actionlint v1.7.12 (latest release) does not recognize the newer GitHub Actions features emitted in the generated gh-aw lock files: the 'copilot-requests' permission scope and the 'queue' key under 'concurrency'. Add path-scoped ignores in .github/actionlint.yaml for *.lock.yml only, so hand-authored workflows remain fully linted. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
vcolin7
approved these changes
Jun 29, 2026
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.
Summary
The focus of these changes is to move from the legacy JimBot issue triage to an agentic workflow version. This improves accuracy of labeling and adds support for identifying bot-sourced issues and issues for deprecated packages.