-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use GitHub forms for feature requests and bug reports (#2174)
- Loading branch information
1 parent
7f72730
commit c826104
Showing
4 changed files
with
55 additions
and
44 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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Bug report | ||
description: Use this template for reporting bugs. Please search existing issues first. | ||
title: '[Bug]: ' | ||
labels: bug | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: '## Environment' | ||
- type: input | ||
attributes: | ||
label: k6 version | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: 'Docker version and image' | ||
- type: dropdown | ||
attributes: | ||
label: OS | ||
options: | ||
- Windows | ||
- Linux | ||
- Mac | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Expected Behaviour | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Actual Behaviour | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Steps to Reproduce the Problem | ||
validations: | ||
required: true |
This file was deleted.
Oops, something went wrong.
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,15 @@ | ||
name: Feature Request | ||
description: Use this template for suggesting new features. | ||
title: '[Feature Request]: ' | ||
labels: feature | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Feature Description | ||
description: A clear and concise description of the problem or missing capability | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Suggested Solution (optional) | ||
description: If you have a solution in mind, please describe it. |