-
-
Notifications
You must be signed in to change notification settings - Fork 407
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:pdm-project/pdm
- Loading branch information
Showing
4 changed files
with
104 additions
and
45 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: "Bug report" | ||
description: Create a report to help us improve | ||
labels: ['🐛 bug'] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: "Thank you for taking the time to report a bug. Please provide as much information as possible to help us understand and resolve the issue." | ||
- type: textarea | ||
id: describe-bug | ||
attributes: | ||
label: Describe the bug | ||
description: "A clear and concise description of what the bug is." | ||
placeholder: "Describe the bug..." | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduce-bug | ||
attributes: | ||
label: To reproduce | ||
description: "Steps to reproduce the behavior." | ||
placeholder: "Steps to reproduce the behavior..." | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected Behavior | ||
description: "A clear and concise description of what you expected to happen." | ||
placeholder: "Explain what you expected to happen..." | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: "environment-info" | ||
attributes: | ||
label: Environment Information | ||
description: "Paste the output of `pdm info && pdm info --env`" | ||
placeholder: "Paste the output of `pdm info && pdm info --env`" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: "pdm-debug-output" | ||
attributes: | ||
label: "pdm -v output" | ||
description: "Please provide the output of `pdm -v`." | ||
placeholder: "Add the output of `pdm -v`..." | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional Context | ||
description: "Add any other context about the problem here." | ||
placeholder: "Additional details..." | ||
validations: | ||
required: false | ||
- type: checkboxes | ||
id: willing-to-submit-pr | ||
attributes: | ||
label: "Are you willing to submit a PR to fix this bug?" | ||
description: "Let us know if you are willing to contribute a fix by submitting a Pull Request." | ||
options: | ||
- label: "Yes, I would like to submit a PR." |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: "Feature / Enhancement Proposal" | ||
description: Suggest an idea for this project | ||
labels: ['⭐ enhancement'] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: "Thank you for suggesting a new feature. Please fill out the details below to help us understand your idea better." | ||
|
||
- type: textarea | ||
id: feature-description | ||
attributes: | ||
label: Feature Description | ||
description: "A detailed description of the feature you would like to see." | ||
placeholder: "Describe the feature you'd like..." | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: problem-solution | ||
attributes: | ||
label: Problem and Solution | ||
description: "Describe the problem that this feature would solve. Explain how you envision it working." | ||
placeholder: "What problem does this feature solve? How do you envision it working?" | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional Context | ||
description: "Add any other context or screenshots about the feature request here." | ||
placeholder: "Add any other context or screenshots about the feature request here." | ||
validations: | ||
required: false | ||
|
||
- type: checkboxes | ||
id: willing-to-contribute | ||
attributes: | ||
label: "Are you willing to contribute to the development of this feature?" | ||
description: "Let us know if you are willing to help by contributing code or other resources." | ||
options: | ||
- label: "Yes, I am willing to contribute to the development of this feature." |