Skip to content

Commit 7c6000f

Browse files
authored
feat: improve new PR and issue labeling for triaging (#364)
* feat: improve new PR and issue labeling for triaging * anything else -> other
1 parent 25970e8 commit 7c6000f

File tree

6 files changed

+71
-15
lines changed

6 files changed

+71
-15
lines changed

.github/ISSUE_TEMPLATE.md

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

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
name: Bug report
3+
about: Create an issue to report a bug for AWS Lambda Builders
4+
title: "Bug: TITLE"
5+
labels: ['type/bug', 'stage/needs-triage']
6+
assignees: ''
7+
8+
---
9+
10+
<!-- Make sure we don't have an existing Issue that reports the bug you are seeing (both open and closed).
11+
If you do find an existing Issue, re-open or add a comment to that Issue instead of creating a new one. -->
12+
13+
### Description:
14+
<!-- Briefly describe the bug you are facing.-->
15+
16+
17+
18+
### Steps to reproduce:
19+
<!-- Provide detailed steps to replicate the bug, including steps from third party tools (CDK, etc.) -->
20+
21+
22+
23+
### Observed result:
24+
<!-- Please provide command output with `--debug` flag set.-->
25+
26+
27+
28+
### Expected result:
29+
<!-- Describe what you expected.-->
30+
31+
32+
33+
### Additional environment details (Ex: Windows, Mac, Amazon Linux etc)
34+
35+
1. OS:
36+
2. If using SAM CLI, `sam --version`:
37+
3. AWS region:
38+
39+
`Add --debug flag to any SAM CLI commands you are running`

.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
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea/feature/enhancement for AWS Lambda Builders
4+
title: "Feature request: TITLE"
5+
labels: ['type/feature', 'stage/needs-triage']
6+
assignees: ''
7+
8+
---
9+
10+
<!-- Make sure we don't have an existing Issue for that feature request (open or closed). -->
11+
12+
### Describe your idea/feature/enhancement
13+
14+
Provide a clear description.
15+
16+
Ex: I wish the AWS Lambda Builders would [...]
17+
18+
### Proposal
19+
20+
Add details on how to add this to the product.
21+
22+
### Additional Details

.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
@@ -34,6 +34,6 @@ jobs:
3434
issue_number: context.issue.number,
3535
owner: context.repo.owner,
3636
repo: context.repo.repo,
37-
labels: ['pr/external']
37+
labels: ['pr/external', 'stage/needs-triage']
3838
})
3939
}

0 commit comments

Comments
 (0)