Skip to content

Commit 97bb1d5

Browse files
authored
Migrate to using issue type bug instead of label bug. (#6595)
1 parent 1fc57c4 commit 97bb1d5

3 files changed

Lines changed: 3 additions & 5 deletions

File tree

.github/ISSUE_TEMPLATE/dotnet-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: .NET Bug Report
22
description: Report a bug in the Agent Framework .NET SDK
33
title: ".NET: [Bug]: "
4-
labels: ["bug", ".NET"]
4+
labels: [".NET"]
55
type: bug
66
body:
77
- type: textarea

.github/ISSUE_TEMPLATE/python-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Python Bug Report
22
description: Report a bug in the Agent Framework Python SDK
33
title: "Python: [Bug]: "
4-
labels: ["bug", "Python"]
4+
labels: ["Python"]
55
type: bug
66
body:
77
- type: textarea

.github/workflows/label-issues.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,7 @@ jobs:
9090
// Check for issue type from issue form dropdown
9191
const issueTypeField = getFormFieldValue(body, 'Type of Issue')
9292
if (issueTypeField) {
93-
if (issueTypeField === 'Bug') {
94-
labels.push("bug")
95-
} else if (issueTypeField === 'Feature Request') {
93+
if (issueTypeField === 'Feature Request') {
9694
labels.push("enhancement")
9795
} else if (issueTypeField === 'Question') {
9896
labels.push("question")

0 commit comments

Comments
 (0)