|
| 1 | +--- |
| 2 | +name: "🐛 Bug Report" |
| 3 | +description: Report a bug |
| 4 | +title: "(module name): (short issue description)" |
| 5 | +labels: [bug, needs-triage] |
| 6 | +assignees: [] |
| 7 | +body: |
| 8 | + - type: markdown |
| 9 | + attributes: |
| 10 | + value: | |
| 11 | + Thanks for taking the time to fill out this bug report! |
| 12 | +
|
| 13 | + **⚠️ Please read this before filling out the form below:** |
| 14 | + If the bug you are reporting is a security-related issue or a security vulnerability, |
| 15 | + please report it via [Report a security vulnerability](https://github.com/aws/aws-cdk/security/advisories/new) instead of this template. |
| 16 | + - type: textarea |
| 17 | + id: description |
| 18 | + attributes: |
| 19 | + label: Describe the bug |
| 20 | + description: What is the problem? A clear and concise description of the bug. |
| 21 | + validations: |
| 22 | + required: true |
| 23 | + - type: checkboxes |
| 24 | + id: regression |
| 25 | + attributes: |
| 26 | + label: Regression Issue |
| 27 | + description: What is a regression? If it worked in a previous version but doesn’t in the latest version, it’s considered a regression. In this case, please provide specific version number in the report. |
| 28 | + options: |
| 29 | + - label: Select this option if this issue appears to be a regression. |
| 30 | + required: false |
| 31 | + - type: input |
| 32 | + id: working-version |
| 33 | + attributes: |
| 34 | + label: Last Known Working CDK Version |
| 35 | + description: Specify the last known CDK version where this code was functioning as expected (if applicable). |
| 36 | + validations: |
| 37 | + required: false |
| 38 | + - type: textarea |
| 39 | + id: expected |
| 40 | + attributes: |
| 41 | + label: Expected Behavior |
| 42 | + description: | |
| 43 | + What did you expect to happen? |
| 44 | + validations: |
| 45 | + required: true |
| 46 | + - type: textarea |
| 47 | + id: current |
| 48 | + attributes: |
| 49 | + label: Current Behavior |
| 50 | + description: | |
| 51 | + What actually happened? |
| 52 | + |
| 53 | + Please include full errors, uncaught exceptions, stack traces, and relevant logs. |
| 54 | + If service responses are relevant, please include wire logs. |
| 55 | + validations: |
| 56 | + required: true |
| 57 | + - type: textarea |
| 58 | + id: reproduction |
| 59 | + attributes: |
| 60 | + label: Reproduction Steps |
| 61 | + description: | |
| 62 | + Provide a self-contained, concise snippet of code that can be used to reproduce the issue. |
| 63 | + For more complex issues provide a repo with the smallest sample that reproduces the bug. |
| 64 | + |
| 65 | + Avoid including business logic or unrelated code, it makes diagnosis more difficult. |
| 66 | + The code sample should be an SSCCE. See http://sscce.org/ for details. In short, please provide a code sample that we can copy/paste, run and reproduce. |
| 67 | + validations: |
| 68 | + required: true |
| 69 | + - type: textarea |
| 70 | + id: solution |
| 71 | + attributes: |
| 72 | + label: Possible Solution |
| 73 | + description: | |
| 74 | + Suggest a fix/reason for the bug |
| 75 | + validations: |
| 76 | + required: false |
| 77 | + - type: textarea |
| 78 | + id: context |
| 79 | + attributes: |
| 80 | + label: Additional Information/Context |
| 81 | + description: | |
| 82 | + Anything else that might be relevant for troubleshooting this bug. Providing context helps us come up with a solution that is most useful in the real world. |
| 83 | + validations: |
| 84 | + required: false |
| 85 | + |
| 86 | + - type: input |
| 87 | + id: cdk-version |
| 88 | + attributes: |
| 89 | + label: CDK CLI Version |
| 90 | + description: Output of `cdk version` |
| 91 | + validations: |
| 92 | + required: true |
| 93 | + |
| 94 | + - type: input |
| 95 | + id: framework-version |
| 96 | + attributes: |
| 97 | + label: Framework Version |
| 98 | + validations: |
| 99 | + required: false |
| 100 | + |
| 101 | + - type: input |
| 102 | + id: node-version |
| 103 | + attributes: |
| 104 | + label: Node.js Version |
| 105 | + validations: |
| 106 | + required: true |
| 107 | + |
| 108 | + - type: input |
| 109 | + id: operating-system |
| 110 | + attributes: |
| 111 | + label: OS |
| 112 | + validations: |
| 113 | + required: true |
| 114 | + |
| 115 | + - type: dropdown |
| 116 | + id: language |
| 117 | + attributes: |
| 118 | + label: Language |
| 119 | + multiple: true |
| 120 | + options: |
| 121 | + - TypeScript |
| 122 | + - Python |
| 123 | + - .NET |
| 124 | + - Java |
| 125 | + - Go |
| 126 | + validations: |
| 127 | + required: true |
| 128 | + |
| 129 | + - type: input |
| 130 | + id: language-version |
| 131 | + attributes: |
| 132 | + label: Language Version |
| 133 | + description: E.g. TypeScript (3.8.3) | Java (8) | Python (3.7.3) |
| 134 | + validations: |
| 135 | + required: false |
| 136 | + |
| 137 | + - type: textarea |
| 138 | + id: other |
| 139 | + attributes: |
| 140 | + label: Other information |
| 141 | + description: | |
| 142 | + e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. associated pull-request, stackoverflow, slack, etc |
| 143 | + validations: |
| 144 | + required: false |
0 commit comments