-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve bugs reporting view to Github's new Issue Form UI (#1641)
- Loading branch information
1 parent
fbbaf82
commit b3fb132
Showing
2 changed files
with
71 additions
and
28 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,71 @@ | ||
--- | ||
name: "🐛 Bug Report" | ||
description: Create a report to help us improve | ||
title: "(short issue description)" | ||
labels: [bug] | ||
assignees: [] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the bug | ||
description: What is the problem? A clear and concise description of the bug. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: current | ||
attributes: | ||
label: Current behavior | ||
description: | | ||
Please include full errors, uncaught exceptions, screenshots, and relevant logs. | ||
Using environment variable JFROG_CLI_LOG_LEVEL="DEBUG" upon running the command will provide more log information. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: reproduction | ||
attributes: | ||
label: Reproduction steps | ||
description: | | ||
Provide steps to reproduce the behavior. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected behavior | ||
description: | | ||
What did you expect to happen? | ||
validations: | ||
required: false | ||
|
||
- type: input | ||
id: cli-version | ||
attributes: | ||
label: JFrog CLI version | ||
description: using "jf --version" | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: os-version | ||
attributes: | ||
label: Operating system type and version | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: rt-version | ||
attributes: | ||
label: JFrog Artifactory version | ||
validations: | ||
required: false | ||
|
||
- type: input | ||
id: xr-version | ||
attributes: | ||
label: JFrog Xray version | ||
validations: | ||
required: false |