Skip to content

Commit b700269

Browse files
Add agentic workflow for automated issue triage (#4177)
* Add agentic workflow for automated issue triage Introduces a GitHub Agentic Workflow (gh-aw) that automatically triages new issues using Copilot. The workflow: - Classifies issue type (Bug/Feature/Question/Task) - Validates environment details for bugs - Assigns area labels based on issue content - Searches for duplicate issues in the repo - Checks for regressions - Posts a single consolidated triage summary comment - Assigns Copilot coding agent for confirmed bugs with complete info Files added: - .github/workflows/issue-triage.md (workflow definition) - .github/workflows/issue-triage.lock.yml (compiled Actions YAML) - .github/aw/actions-lock.json (pinned action versions) * Align triage label names with issue template conventions * Constrain to single area label to stay within max:5 safe-outputs limit * Address PR review: roles:all, min-integrity:none, explicit permissions, fix Bug classification wording, fix Needs More Info label format * Recompile triage workflow with gh-aw v0.68.1 (MCP gateway v0.2.17, AWF v0.25.18) * Update issue-triage: add Required Context, Phase 2 assign-to-agent, AI disclaimer * Fix label name: align 'Triage Needed 🆕' with repo convention
1 parent ef6aacf commit b700269

4 files changed

Lines changed: 1325 additions & 0 deletions

File tree

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,5 @@
6161
#*.PDF diff=astextplain
6262
#*.rtf diff=astextplain
6363
#*.RTF diff=astextplain
64+
65+
.github/workflows/*.lock.yml linguist-generated=true merge=ours

.github/aw/actions-lock.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"entries": {
3+
"actions/github-script@v8": {
4+
"repo": "actions/github-script",
5+
"version": "v8",
6+
"sha": "ed597411d8f924073f98dfc5c65a23a2325f34cd"
7+
},
8+
"github/gh-aw-actions/setup@v0.68.1": {
9+
"repo": "github/gh-aw-actions/setup",
10+
"version": "v0.68.1",
11+
"sha": "2fe53acc038ba01c3bbdc767d4b25df31ca5bdfc"
12+
}
13+
}
14+
}

0 commit comments

Comments
 (0)