-
Notifications
You must be signed in to change notification settings - Fork 168
chore(governance): update issue templates to use forms #1128
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
Merged
dreamorosi
merged 8 commits into
main
from
1126-maintenance-update-issue-templates-+-use-issue-forms
Oct 24, 2022
Merged
Changes from 1 commit
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
158a6ee
chore: update issue templates
dreamorosi e1f6940
Update .github/ISSUE_TEMPLATE/bug_report.yml
dreamorosi b048600
Update .github/ISSUE_TEMPLATE/documentation_improvements.yml
dreamorosi 5de4736
Update .github/ISSUE_TEMPLATE/maintenance.yml
dreamorosi 18596eb
Update .github/ISSUE_TEMPLATE/maintenance.yml
dreamorosi 730e13a
Update .github/ISSUE_TEMPLATE/rfc.yml
dreamorosi 7e55d55
Update .github/ISSUE_TEMPLATE/support_powertools.yml
dreamorosi 7636f55
Update .github/ISSUE_TEMPLATE/feature_request.yml
dreamorosi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
name: Bug report | ||
description: Report a reproducible bug to help us improve | ||
title: "Bug: TITLE" | ||
labels: ["bug", "triage"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for submitting a bug report. Before you start, make sure that [the bug hasn't been reported already](https://github.com/awslabs/aws-lambda-powertools-typescript/issues). | ||
|
||
Please add as much information as possible to help us reproduce, and remove any potential sensitive data. | ||
- type: textarea | ||
id: expected_behaviour | ||
attributes: | ||
label: Expected Behaviour | ||
description: Please share details on the behaviour you expected | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: current_behaviour | ||
attributes: | ||
label: Current Behaviour | ||
description: Please share details on the current issue | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: code_snippet | ||
attributes: | ||
label: Code snippet | ||
description: Please share a code snippet to help us reproduce the issue | ||
render: JavaScript | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Possible Solution | ||
description: If known, please suggest a potential resolution | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: steps | ||
attributes: | ||
label: Steps to Reproduce | ||
description: Please share how we might be able to reproduce this issue | ||
validations: | ||
required: true | ||
- type: input | ||
id: version | ||
attributes: | ||
label: AWS Lambda Powertools for TypeScript version | ||
placeholder: "latest, 1.3.0" | ||
value: latest | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: runtime | ||
attributes: | ||
label: AWS Lambda function runtime | ||
options: | ||
- 12.x | ||
- 14.x | ||
- 16.x | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: packaging | ||
attributes: | ||
label: Packaging format used | ||
options: | ||
- Lambda Layers | ||
- Npm | ||
multiple: true | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Debugging logs | ||
description: If available, please share [debugging logs](https://awslabs.github.io/aws-lambda-powertools-python/#debug-mode) | ||
render: Shell | ||
validations: | ||
required: false | ||
- type: markdown | ||
attributes: | ||
value: | | ||
--- | ||
|
||
**Disclaimer**: We value your time and bandwidth. As such, any pull requests created on non-triaged issues might not be successful. | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
blank_issues_enabled: false | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Ask a question | ||
url: https://github.com/awslabs/aws-lambda-powertools-typescript/discussions/new | ||
about: Ask a general question about Lambda Powertools |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: Documentation improvements | ||
description: Suggest a documentation update to improve everyone's experience | ||
title: "Docs: TITLE" | ||
labels: ["documentation", "triage"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for helping us improve everyone's experience. We review documentation updates on a case by case basis. | ||
- type: textarea | ||
id: search_area | ||
attributes: | ||
label: What were you searching in the docs? | ||
description: Please help us understand how you looked for information that was either unclear or not available | ||
validations: | ||
required: true | ||
- type: input | ||
id: area | ||
attributes: | ||
label: Is this related to an existing documentation section? | ||
description: Please share a link, if applicable | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: idea | ||
attributes: | ||
label: How can we improve? | ||
description: Please share your thoughts on how we can improve this experience | ||
render: Markdown | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: suggestion | ||
attributes: | ||
label: Got a suggestion in mind? | ||
description: Please suggest a proposed update | ||
validations: | ||
required: false | ||
- type: checkboxes | ||
id: acknowledgment | ||
attributes: | ||
label: Acknowledgment | ||
options: | ||
- label: I understand the final update might be different from my proposed suggestion, or refused. | ||
required: true | ||
- type: markdown | ||
attributes: | ||
value: | | ||
--- | ||
|
||
**Disclaimer**: We value your time and bandwidth. As such, any pull requests created on non-triaged issues might not be successful. | ||
dreamorosi marked this conversation as resolved.
Show resolved
Hide resolved
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.