Skip to content

Commit 5eec4f3

Browse files
author
Eugene Cheung
authored
chore: add issue templates [skip ci] (#62)
1 parent 3ea6ace commit 5eec4f3

File tree

3 files changed

+83
-0
lines changed

3 files changed

+83
-0
lines changed
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
name: Bug report
2+
description: Report an issue
3+
labels: [bug]
4+
body:
5+
6+
- type: input
7+
id: bug-version
8+
attributes:
9+
label: Version
10+
description: The version of cdk-monitoring-constructs you're using.
11+
placeholder: |
12+
Example: "v0.0.20"
13+
validations:
14+
required: true
15+
16+
- type: textarea
17+
id: bug-reproduce-steps
18+
attributes:
19+
label: Steps and/or minimal code example to reproduce
20+
description: Provide an example of the issue.
21+
placeholder: |
22+
Example:
23+
1. First step
24+
2. Second step
25+
3. Issue here
26+
validations:
27+
required: true
28+
29+
- type: textarea
30+
id: bug-expected-behavior
31+
attributes:
32+
label: Expected behavior
33+
description: Explain what you expect to happen.
34+
placeholder: |
35+
Example:
36+
"This should happen..."
37+
validations:
38+
required: true
39+
40+
- type: textarea
41+
id: bug-actual-behavior
42+
attributes:
43+
label: Actual behavior
44+
description: Explain what actually happens.
45+
placeholder: |
46+
Example:
47+
"This happened instead..."
48+
validations:
49+
required: true
50+
51+
- type: textarea
52+
id: bug-other-details
53+
attributes:
54+
label: Other details
55+
placeholder: |
56+
Additional details and attachments.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: Report a security vulnerability
4+
url: http://aws.amazon.com/security/vulnerability-reporting/
5+
about: Please report security vulnerabilities to AWS/Amazon Security instead of on GitHub.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Feature request
2+
description: Suggest a new feature or enhancement
3+
labels: [feature-request]
4+
body:
5+
6+
- type: input
7+
id: feature-scope
8+
attributes:
9+
label: Feature scope
10+
description: The relevant metric namespace.
11+
placeholder: |
12+
Example: "DynamoDB"
13+
validations:
14+
required: true
15+
16+
- type: textarea
17+
id: feature-description
18+
attributes:
19+
label: Describe your suggested feature
20+
description: What new feature or enhancement should be added?
21+
validations:
22+
required: true

0 commit comments

Comments
 (0)