Skip to content

Commit 17e9c9f

Browse files
authored
fix: align triage labels with repo taxonomy
1 parent 5e7e374 commit 17e9c9f

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/issue-triage.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ safe-outputs:
1111
add-labels:
1212
allowed:
1313
- "type:bug"
14-
- "type:enhancement"
14+
- "type:feature"
1515
- "type:question"
1616
- "type:documentation"
1717
- "duplicate"
@@ -149,7 +149,7 @@ analysis when the issue crosses specializations or requires expert judgment.
149149
1. Read the issue content from `/tmp/gh-aw/agent/issue-content.md` (user context).
150150
2. Read the routing policy and team configuration from `/tmp/gh-aw/agent/system-policy.md` (system context).
151151
3. Analyze the issue to determine:
152-
- What type of work this represents (bug, enhancement, question, documentation)
152+
- What type of work this represents (bug, feature, question, documentation)
153153
- The estimated effort level (S, M, L, XL)
154154
- Which team domain(s) the issue relates to
155155
4. If the issue spans multiple domains or you need expert input, call the relevant
@@ -162,7 +162,7 @@ analysis when the issue crosses specializations or requires expert judgment.
162162

163163
You may ONLY apply labels from this list (max 3):
164164
- `type:bug` — confirmed or suspected bug reports
165-
- `type:enhancement` — feature requests or improvements
165+
- `type:feature` — feature requests or improvements
166166
- `type:question` — questions about usage or behavior
167167
- `type:documentation` — documentation issues or requests
168168
- `duplicate` — appears to duplicate an existing issue

.github/workflows/sync-squad-labels.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,8 @@ jobs:
8585
];
8686
8787
const TYPE_LABELS = [
88-
{ name: 'type:feature', color: 'DDD1F2', description: 'Planned implementation work for a new capability' },
88+
{ name: 'type:feature', color: 'DDD1F2', description: 'New capability' },
8989
{ name: 'type:bug', color: 'FF0422', description: 'Something broken' },
90-
{ name: 'type:enhancement', color: 'A2EEEF', description: 'Community-requested feature or improvement' },
9190
{ name: 'type:question', color: 'D876E3', description: 'Questions about usage or behavior' },
9291
{ name: 'type:documentation', color: '0075CA', description: 'Documentation issues or requests' },
9392
{ name: 'type:spike', color: 'F2DDD4', description: 'Research/investigation — produces a plan, not code' },

0 commit comments

Comments
 (0)