Skip to content

Commit c249ce2

Browse files
authored
Merge branch 'master' into fix/config-service-principal-condition
2 parents eb83cf1 + 0bc58cd commit c249ce2

1,123 files changed

Lines changed: 9893 additions & 4759 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/ISSUE_TEMPLATE.md

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

.github/ISSUE_TEMPLATE/bug.md

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

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
name: Bug Report
2+
description: Report a bug
3+
title: "(module name): short issue description"
4+
labels: [bug, needs-triage]
5+
body:
6+
- type: textarea
7+
id: problem
8+
attributes:
9+
label: What is the problem?
10+
validations:
11+
required: true
12+
13+
- type: textarea
14+
id: reproduction
15+
attributes:
16+
label: Reproduction Steps
17+
description: |
18+
Minimal amount of code that causes the bug (if possible) or a reference.
19+
20+
The code sample should be an SSCCE. See http://sscce.org/ for details.
21+
In short, provide a code sample that we can copy/paste, run and reproduce.
22+
validations:
23+
required: true
24+
25+
- type: textarea
26+
id: expected
27+
attributes:
28+
label: What did you expect to happen?
29+
description: |
30+
What were you trying to achieve by performing the steps above?
31+
validations:
32+
required: true
33+
34+
- type: textarea
35+
id: actual
36+
attributes:
37+
label: What actually happened?
38+
description: |
39+
What is the unexpected behavior you were seeing? If you got an error, paste it here.
40+
validations:
41+
required: true
42+
43+
- type: input
44+
id: cdk-version
45+
attributes:
46+
label: CDK CLI Version
47+
description: Output of `cdk version`
48+
validations:
49+
required: true
50+
51+
- type: input
52+
id: framework-version
53+
attributes:
54+
label: Framework Version
55+
validations:
56+
required: false
57+
58+
- type: input
59+
id: node-version
60+
attributes:
61+
label: Node.js Version
62+
validations:
63+
required: true
64+
65+
- type: input
66+
id: operating-system
67+
attributes:
68+
label: OS
69+
validations:
70+
required: true
71+
72+
- type: dropdown
73+
id: language
74+
attributes:
75+
label: Language
76+
multiple: true
77+
options:
78+
- Typescript
79+
- Python
80+
- .NET
81+
- Java
82+
- Go
83+
validations:
84+
required: true
85+
86+
- type: input
87+
id: language-version
88+
attributes:
89+
label: Language Version
90+
description: E.g. TypeScript (3.8.3) | Java (8) | Python (3.7.3)
91+
validations:
92+
required: false
93+
94+
- type: textarea
95+
id: other
96+
attributes:
97+
label: Other information
98+
description: |
99+
e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. associated pull-request, stackoverflow, slack, etc
100+
validations:
101+
required: false
102+
103+
- type: markdown
104+
attributes:
105+
value: |
106+
---
107+
108+
This is :bug: Bug Report

.github/ISSUE_TEMPLATE/doc.md

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

.github/ISSUE_TEMPLATE/doc.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Documentation Issue
2+
description: Issue in the reference documentation or developer guide
3+
title: "(module name): short issue description"
4+
labels: [feature-request, documentation, needs-triage]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Developer guide? Raise issue/pr here: https://github.com/awsdocs/aws-cdk-guide
10+
11+
Want to help? Submit a pull request here: https://github.com/aws/aws-cdk
12+
13+
- type: input
14+
id: doc-link
15+
attributes:
16+
label: link to reference doc page
17+
validations:
18+
required: false
19+
20+
- type: textarea
21+
id: issue
22+
attributes:
23+
label: Describe your issue?
24+
validations:
25+
required: true
26+
27+
- type: markdown
28+
attributes:
29+
value: |
30+
---
31+
32+
This is a 📕 documentation issue

.github/ISSUE_TEMPLATE/feature-request.md

Lines changed: 0 additions & 46 deletions
This file was deleted.
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
name: Feature Request
2+
description: Request a new feature
3+
title: "(module name): short issue description"
4+
labels: [feature-request, needs-triage]
5+
body:
6+
- type: textarea
7+
id: description
8+
attributes:
9+
label: Description
10+
description: Short description of the feature you are proposing.
11+
validations:
12+
required: true
13+
14+
- type: textarea
15+
id: use-case
16+
attributes:
17+
label: Use Case
18+
description: |
19+
Why do you need this feature?
20+
validations:
21+
required: true
22+
23+
- type: textarea
24+
id: solution
25+
attributes:
26+
label: Proposed Solution
27+
description: |
28+
Please include prototype/workaround/sketch/reference implementation.
29+
validations:
30+
required: true
31+
32+
- type: textarea
33+
id: other
34+
attributes:
35+
label: Other information
36+
description: |
37+
e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. associated pull-request, stackoverflow, slack, etc
38+
validations:
39+
required: false
40+
41+
- type: checkboxes
42+
id: acknowledgments
43+
attributes:
44+
label: Acknowledge
45+
options:
46+
- label: I may be able to implement this feature request
47+
required: false
48+
- label: This feature might incur a breaking change
49+
required: false
50+
51+
- type: markdown
52+
attributes:
53+
value: |
54+
---
55+
56+
This is a :rocket: Feature Request

0 commit comments

Comments
 (0)