-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Issue template & PR templates (#35)
- Loading branch information
Showing
4 changed files
with
109 additions
and
0 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,76 @@ | ||
--- | ||
name: "🐛 Bug Report" | ||
description: Create a report to help us improve | ||
labels: [bug] | ||
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-core-version | ||
attributes: | ||
label: JFrog CLI-Core version | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: cli-artifactory-version | ||
attributes: | ||
label: JFrog CLI-Artifactory version | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: cli-version | ||
attributes: | ||
label: JFrog CLI version (if applicable) | ||
description: using "jf --version" | ||
validations: | ||
required: false | ||
|
||
- 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 |
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,20 @@ | ||
--- | ||
name: ⭐️ Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: feature request | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like to see** | ||
A clear and concise description of the new feature. | ||
|
||
**Describe alternatives you've considered** | ||
If applicable, a clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
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,8 @@ | ||
--- | ||
name: ❓ Question | ||
about: Ask a question | ||
title: '' | ||
labels: question | ||
assignees: '' | ||
|
||
--- |
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,5 @@ | ||
- [ ] All [tests](https://github.com/jfrog/jfrog-cli-core#tests) passed. If this feature is not already covered by the tests, I added new tests. | ||
- [ ] All [static analysis checks](https://github.com/jfrog/jfrog-cli-core/actions/workflows/analysis.yml) passed. | ||
- [ ] This pull request is on the dev branch. | ||
- [ ] I used gofmt for formatting the code before submitting the pull request. | ||
----- |