Skip to content

Commit f7418d8

Browse files
authored
feat: improve new PR and issue labeling for triaging (#2400)
* feat: improve new PR and issue labeling for triaging * missed pr labeler * anything else -> other
1 parent 8d0e058 commit f7418d8

File tree

6 files changed

+14
-33
lines changed

6 files changed

+14
-33
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
name: Bug report
33
about: Create an issue to report a bug for the SAM Translator
4-
title: ''
5-
labels: ''
4+
title: "Bug: TITLE"
5+
labels: ['type/bug', 'stage/needs-triage']
66
assignees: ''
77

88
---

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
name: Feature request
33
about: Suggest an idea/feature/enhancement for the SAM Translator
4-
title: ''
5-
labels: ''
4+
title: "Feature request: TITLE"
5+
labels: ['type/feature', 'stage/needs-triage']
66
assignees: ''
77

88
---

.github/ISSUE_TEMPLATE/other.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
name: Other
3+
about: Choose if your issue doesn't apply to the other templates
4+
title: ''
5+
labels: ['stage/needs-triage']
6+
assignees: ''
7+
8+
---

.github/workflows/pr-labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ jobs:
2626
issue_number: context.issue.number,
2727
owner: context.repo.owner,
2828
repo: context.repo.repo,
29-
labels: ['pr/external']
29+
labels: ['pr/external', 'stage/needs-triage']
3030
})
3131
}

0 commit comments

Comments
 (0)