Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add gen 2 issue report and update feature request #840

Merged
merged 4 commits into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions .github/ISSUE_TEMPLATE/1.gen2_bug_report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Gen 2 Bug Report
Copy link
Contributor Author

@dpilch dpilch May 9, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copied from amplify-backend repo. I also added the section for npm list @aws-amplify/graphql-generator.

description: Create a report to help us improve Amplify Gen 2 Codegen
labels: ['pending-triage']
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: textarea
id: env
attributes:
label: Environment information
description: |
Please copy and paste output of the following command. This will be automatically formatted into code, so no need for backticks.
```bash
npx ampx info
```
render: plain text
validations:
required: true
- type: textarea
id: env
attributes:
label: Codegen packages
description: |
Please copy and paste output of the following command. This will be automatically formatted into code, so no need for backticks.
```bash
npm list @aws-amplify/graphql-generator
```
render: plain text
validations:
required: true
- type: textarea
id: description
attributes:
label: Description
description: |
Describe the bug
How can this bug be reproduced?
Please include any code snippets or screenshots that you think would be helpful!
validations:
required: true
20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/2.feature_request.md

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Bug report
description: Create a report to help us improve Amplify Codegen
name: Gen 1 Bug report
description: Create a report to help us improve Gen 1 CLI Amplify Codegen
body:
- type: markdown
attributes:
Expand Down
49 changes: 49 additions & 0 deletions .github/ISSUE_TEMPLATE/3.feature_request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Feature request
description: Suggest an idea for the Amplify Codegen
labels: ['pending-triage']

body:
- type: markdown
attributes:
value: |
Thanks for taking the time to submit a feature request! Try to include as much information as you can.

- For **Amplify Backend** issues, please visit [amplify-backend](https://github.com/aws-amplify/amplify-backend/issues/new/choose)
- For **Amplify Hosting** issues, visit [amplify-hosting](https://github.com/aws-amplify/amplify-hosting/issues/new/choose)
- For **Amplify Codegen** issues, visit [amplify-codegen](https://github.com/aws-amplify/amplify-codegen/issues/new/choose)
- type: textarea
attributes:
label: Describe the feature you'd like to request
description: |
A clear and concise description of what you want to happen. Please include **any related issues**, documentation, etc.
validations:
required: true
- type: textarea
attributes:
label: Describe the solution you'd like
description: |
A clear and concise description of what you want to happen.
validations:
required: true
- type: textarea
attributes:
label: Describe alternatives you've considered
description: |
A clear and concise description of any alternative solutions or features you've considered.
validations:
required: true
- type: textarea
attributes:
label: Additional context
description: |
Add any other use cases or context about the feature request here. Please include any prototype, workaround, reference implementation, etc.
- type: checkboxes
attributes:
label: Is this something that you'd be interested in working on?
options:
- label: 👋 I may be able to implement this feature request
- type: checkboxes
attributes:
label: Would this feature include a breaking change?
options:
- label: ⚠️ This feature might incur a breaking change
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: true
contact_links:
- name: I want help writing my Amplify application
url: https://discord.com/invite/amplify
about: Check out the `*-help` channels on Amplify's community Discord to ask your questions about building applications with the CLI or other Amplify libraries.
Loading