-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update bug template to new version (#369)
- Loading branch information
1 parent
10f061a
commit 2217a2a
Showing
1 changed file
with
50 additions
and
39 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,40 +1,51 @@ | ||
--- | ||
name: Bug Report | ||
about: Something is not working | ||
--- | ||
|
||
<!-- | ||
Thank you for submitting an issue. Please fill in the template below | ||
information about the bug you encountered. | ||
--> | ||
|
||
#### Summary | ||
<!-- Please explain the bug in a few short sentences --> | ||
|
||
#### What Should Happen Instead? | ||
<!-- Please explain what the expected behavior is --> | ||
|
||
#### Reproduction Steps | ||
<!-- Are you able to consistently reproduce the issue? Please add a list of steps that lead to the bug. --> | ||
|
||
1. ... | ||
2. ... | ||
|
||
#### System information | ||
<!-- Please provide an overview of your setup (e.g. number of nodes) and the output of: | ||
`snap version` | ||
`uname -a` | ||
`snap list k8s` | ||
`snap services k8s` | ||
`snap logs k8s -n 10000` | ||
`k8s status` | ||
--> | ||
|
||
#### Can you suggest a fix? | ||
<!-- (This section is optional). How do you propose that the issue be fixed? --> | ||
|
||
#### Are you interested in contributing with a fix? | ||
<!-- yes/no, or @mention maintainers. Community contributions are welcome. --> | ||
|
||
<!-- Thank you for making the k8s-snap better --> | ||
description: File a bug report | ||
labels: ["Type: Bug"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: > | ||
Thanks for taking the time to fill out this bug report! | ||
- type: textarea | ||
id: bug-description | ||
attributes: | ||
label: Bug Description | ||
description: > | ||
Please explain the bug in a few short sentences. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: Reproduction steps | ||
description: > | ||
Are you able to consistently reproduce the issue? Please add a list of steps that lead to the bug. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: environment | ||
attributes: | ||
label: System information | ||
description: > | ||
We need to know a bit more about the context in which you run the snap. | ||
Please provide an overview of your setup (e.g. number of nodes) and the output of: | ||
`snap version` | ||
`uname -a` | ||
`snap list k8s` | ||
`snap services k8s` | ||
`snap logs k8s -n 10000` | ||
`k8s status` | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: fix | ||
attributes: | ||
label: Can you suggest a fix? | ||
description: > | ||
This section is optional. How do you propose that the issue be fixed? | ||
- type: textarea | ||
id: contribution | ||
attributes: | ||
label: yes/no, or @mention maintainers. Community contributions are welcome. | ||
description: > | ||
Are you interested in contributing a fix? |