-
Notifications
You must be signed in to change notification settings - Fork 706
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GH: use an issue form for bug reports
Lots of bug reports currently just omit information which we'd like to have. Usually this means we have to ask follow up question. Let's try using an issue form in the hopes of getting more complete answers. Signed-off-by: Lorenz Bauer <lmb@isovalent.com>
- Loading branch information
Showing
2 changed files
with
36 additions
and
23 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,36 @@ | ||
name: Bug report | ||
description: Create a report to help us improve | ||
labels: ["bug"] | ||
assignees: [] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: "Thank you for reporting a bug. Please fill out the fields below." | ||
|
||
- type: textarea | ||
attributes: | ||
label: Describe the bug | ||
description: | | ||
A clear and concise description of what the bug is. | ||
Include what you expected to happen instead. | ||
render: markdown | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: How to reproduce | ||
description: "Steps to reproduce the behavior." | ||
render: shell | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: version | ||
attributes: | ||
label: Version information | ||
description: The output of `go list -m github.com/cilium/ebpf`. | ||
placeholder: github.com/cilium/ebpf vX.Y.Z | ||
validations: | ||
required: true |