-
Notifications
You must be signed in to change notification settings - Fork 451
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
Adds Issue templates for bug report and feature request #567
base: main
Are you sure you want to change the base?
Changes from all commits
edf9f12
ed470ca
b49a918
9062ba2
6da4d02
63b92ed
4bd3509
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Bug report | ||
description: Create a report to help us improve (search for duplicates first) | ||
labels: bug | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Issue description | ||
description: Explain clearly and unambiguously what went wrong | ||
placeholder: | | ||
Tell us here about the bug/problem | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: How to reproduce this issue? | ||
description: Try to explain what you did for the bug to occur. A good explanation of steps to reproduce helps us locate the bug faster. If applicable, add screenshots to help explain your problem. | ||
placeholder: | | ||
Step 1: ... | ||
Step 2: ... | ||
... | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Details | ||
description: To understand the issue, we need some details of your setup & system | ||
placeholder: | | ||
Version: xy / zg ...] | ||
validations: | ||
required: true | ||
Comment on lines
+23
to
+30
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This makes no sense in the context of this repo. |
||
- type: textarea | ||
attributes: | ||
label: Logs | ||
description: | ||
placeholder: | | ||
[example_log.txt / example_log.md ...] | ||
validations: | ||
required: false | ||
Comment on lines
+31
to
+38
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Makes no sense. |
||
- type: checkboxes | ||
attributes: | ||
label: Issue tracker rule checks (please read carefully) | ||
options: | ||
- label: "I have checked that my problem <a href='https://github.com/Schweinepriester/github-profile-achievements/issues' target='_blank'>is not already reported</a>" | ||
required: true | ||
- label: "I have checked that my problem is not already fixed" | ||
required: true |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
blank_issues_enabled: false | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why? |
||
contact_links: | ||
- name: "GitHub" | ||
url: https://github.com/Schweinepriester | ||
about: My GitHub Page |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Feature Request | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Feature Requests makes little sense when this repo does not hold software. |
||
description: Create a report to help us improve (search for duplicates first) | ||
labels: enhancement | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Feature description | ||
description: Explain clearly | ||
placeholder: | | ||
Tell us here about the feature | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Logs | ||
description: Provide logs | ||
placeholder: | | ||
example_log.txt | ||
validations: | ||
required: false | ||
Comment on lines
+13
to
+20
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For feature requests? really? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
- type: checkboxes | ||
attributes: | ||
label: Issue tracker rule checks (please read carefully) | ||
options: | ||
- label: "I have checked that this feature <a href='https://github.com/Schweinepriester/github-profile-achievements/issues' target='_blank'>is not already requested.</a>" | ||
required: true | ||
- label: "I have checked that this feature is not already implemented" | ||
required: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.