-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: enhance contributing guidelines to be more accessible (#143)
Problem: The contributing and development guidelines in this repository could benefit from an improvement pass to make workflows, expectations, and intentions clearer. Solution: Rework/refactor the CONTRIBUTING.md, DEVELOPMENT.md, GitHub issue templates, and pull request template with the goal of improving understandability to those not familiar with the code base, hatch-based workflows, GitHub pull request workflows, and our use of conventional commits Signed-off-by: Daniel Neilson <53624638+ddneilson@users.noreply.github.com>
- Loading branch information
Showing
8 changed files
with
306 additions
and
94 deletions.
There are no files selected for viewing
This file contains 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,33 +1,63 @@ | ||
name: "\U0001F41B Bug Report" | ||
description: Report a bug | ||
title: "Bug: TITLE" | ||
labels: ["bug"] | ||
title: "Bug: (short bug description)" | ||
labels: ["bug", "needs triage"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for taking the time to fill out this bug report! | ||
⚠️ If the bug that you are reporting is a security-related issue or security vulnerability, | ||
then please do not create a report via this template. Instead please | ||
notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/) | ||
or directly via email to [AWS Security](aws-security@amazon.com). | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the bug | ||
description: What is the problem? A clear and concise description of the bug. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected_behaviour | ||
attributes: | ||
label: Expected Behaviour | ||
description: What did you expect to happen? | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: current_behaviour | ||
attributes: | ||
label: Current Behaviour | ||
description: What actually happened? Please include as much detail as you can. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: reproduction_steps | ||
attributes: | ||
label: Reproduction Steps | ||
description: | | ||
Please provide as much detail as you can to help us understand how we can reproduce the bug. | ||
Step by step instructions and self-contained code snippets are ideal. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: code_snippet | ||
id: environment | ||
attributes: | ||
label: Code Snippet | ||
label: Environment | ||
description: Please provide information on the environment and software versions that you are using to reproduce the bug. | ||
value: | | ||
At minimum: | ||
1. Operating system: (e.g. Windows Server 2022; Amazon Linux 2023; etc.) | ||
2. Output of `python3 --version`: | ||
3. Version of this library. | ||
Please share other details about your environment that you think might be relevant to reproducing the bug. | ||
validations: | ||
required: true | ||
|
This file contains 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
This file contains 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,17 +1,37 @@ | ||
name: "\U0001F680 Feature Request" | ||
description: Request a new feature | ||
title: "Feature request: TITLE" | ||
labels: ["feature"] | ||
title: "Feature request: (short description of the feature)" | ||
labels: ["feature", "needs triage"] | ||
body: | ||
- type: textarea | ||
id: use_case | ||
id: problem | ||
attributes: | ||
label: Use Case | ||
label: Describe the problem | ||
description: | | ||
Help us understand the problem that you are trying to solve, and why it is important to you. | ||
Provide as much detail as you are able. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: proposed_solution | ||
attributes: | ||
label: Proposed Solution | ||
description: | | ||
Describe your proposed feature that you see solving this problem for you. If you have a | ||
full or partial prototype implementation then please open a draft pull request and link to | ||
it here as well. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: use_case | ||
attributes: | ||
label: Example Use Cases | ||
description: | | ||
Provide some sample code snippets or shell scripts that show how **you** would use this feature as | ||
you have proposed it. | ||
validations: | ||
required: true | ||
|
||
|
This file contains 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,17 +1,19 @@ | ||
name: "🛠️ Maintenance" | ||
description: Some type of improvement | ||
title: "Maintenance: TITLE" | ||
labels: ["feature"] | ||
title: "Maintenance: (short description of the issue)" | ||
labels: ["feature", "needs triage"] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Describe the improvement and why it is important to do. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Solution | ||
description: Provide any ideas you have for how the suggestion can be implemented. | ||
validations: | ||
required: true |
This file contains 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
This file contains 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
Oops, something went wrong.