Skip to content

Commit

Permalink
add initial issue form
Browse files Browse the repository at this point in the history
  • Loading branch information
siegerts committed May 3, 2021
1 parent 49d07d4 commit 149c682
Showing 1 changed file with 121 additions and 0 deletions.
121 changes: 121 additions & 0 deletions .github/ISSUE_TEMPLATE/1.bug_report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
name: Bug report
description: Create a report to help us improve the Amplify Admin UI
body:
- type: markdown
attributes:
value: Thanks for taking the time to fill out this bug report! Try to include as much information as you can.
- type: markdown
attributes:
value: |
**Note**: If your issue is regarding the AWS Amplify CLI, please log it in the [Amplify CLI GitHub Issue Tracker](https://github.com/aws-amplify/amplify-cli/issues).
- type: checkboxes
attributes:
label: |
Before opening, please confirm:
options:
- label: I have [searched for duplicate or closed issues](https://github.com/aws-amplify/amplify-adminui/issues?q=is%3Aissue+).
required: true
- label: I have read the guide for [submitting bug reports](https://github.com/aws-amplify/amplify-adminui/blob/main/CONTRIBUTING.md#bug-reports).
required: true
- label: I have done my best to include a minimal, self-contained set of instructions for consistently reproducing the issue.
required: true

- type: markdown
attributes:
value: |
## Application
- type: input
attributes:
label: App Id
description: |
Find the `App Id` in the last portion of your URL. For example:
```
https://console.aws.amazon.com/amplify/home?region=<region>#/<APP-ID>
```
Or, go to **App Settings** -> **General** -> **AppArn**, and inspect the last portion of the identifier:
```
arn:aws:amplify:REGION:accountId:apps/<APP-ID>
```
- type: input
attributes:
label: Region
placeholder: e.g. us-east-1

- type: input
attributes:
label: Environment name
description: If applicable. **Be sure to remove any sensitive data.**

- type: markdown
attributes:
value: |
## Local Environment
- type: input
attributes:
label: Amplify CLI Version
placeholder: Run `amplify version` to get the Amplify CLI version
description: If the issue is associated with the Amplify CLI

- type: input
attributes:
label: If applicable, what version of Node.js are you using?
description: You can use `node -v` to check the node version on your system.

- type: input
attributes:
label: What operating system are you using?
description: "For example: Mac, Windows, Ubuntu."

- type: input
attributes:
label: Browser type?
description: "For example: Google Chrome, Firefox, etc."

- type: markdown
attributes:
value: |
## Details
- type: textarea
attributes:
label: Describe the bug
description: |
A clear and concise description of what the bug is.
**Be sure to remove any sensitive data.**
validations:
required: true
- type: textarea
attributes:
label: Expected behavior
description: |
A clear and concise description of what you expected to happen.
validations:
required: true
- type: textarea
attributes:
label: Reproduction steps
description: |
How do you trigger this bug? Please walk us through it step by step.
Screenshots can be provided in the input below.
**Be sure to remove any sensitive data.**
placeholder: |
1.
2.
3.
...
validations:
required: true

- type: textarea
attributes:
label: Additional information
description: |
If you have any additional information, workarounds, etc. for us, use the field below.
Please note, you can attach screenshots or screen recordings here, by dragging and dropping files in the field below.

0 comments on commit 149c682

Please sign in to comment.