-
-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #389 from hummingbot/fix-github-issue-template
fix/ github issue template and rename to .yml
- Loading branch information
Showing
4 changed files
with
92 additions
and
71 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,57 @@ | ||
name: Bug Report | ||
description: Create a bug report to help us improve | ||
title: "Bug Report" | ||
labels: bug | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## **Before Submitting:** | ||
* Please edit the "Bug Report" to the title of the bug or issue | ||
* Please make sure to look on our GitHub issues to avoid duplicate tickets | ||
* You can add additional `Labels` to support this ticket (connectors, strategies, etc) | ||
* If this is something to do with installation and how to's we would recommend to visit our [Hummingbot docs](https://hummingbot.org/docs/) and [Discord server](https://discord.gg/hummingbot) | ||
- type: textarea | ||
id: what-happened | ||
attributes: | ||
label: Describe the bug | ||
description: A clear and concise description of the bug or issue. Please make sure to add screenshots and error message to help us investigate | ||
placeholder: Tell us what happened? | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: reproduce | ||
attributes: | ||
label: Steps to reproduce | ||
description: A concise description of the steps to reproduce the buggy behavior | ||
value: | | ||
1. | ||
2. | ||
3. | ||
validations: | ||
required: true | ||
- type: input | ||
id: version | ||
attributes: | ||
label: Release version | ||
description: Include your bot version number (Can be found at the upper left corner of your CLI) | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: build | ||
attributes: | ||
label: Type of installation | ||
description: What type of installation did you use? | ||
options: | ||
- Source | ||
- Docker | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: attachment | ||
attributes: | ||
label: Attach required files | ||
description: Please attach your config file and log file located on the "../gateway/logs/" folder. It would be really helpful to triage the issue. | ||
validations: | ||
required: false |
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,35 @@ | ||
name: Feature request | ||
description: Suggest an idea that will improve the Hummingbot codebase | ||
title: "Feature Request" | ||
labels: enhancement | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## **Before Submitting:** | ||
* Please edit the "Feature Request" to the title of the feature | ||
* Please make sure to look on our GitHub issues to avoid duplicate tickets | ||
* You can add additional `Labels` to support this ticket (connectors, strategies, etc) | ||
* If this is something to do with installation and how to's we would recommend to visit our [Discord server](https://discord.gg/hummingbot) and [Hummingbot docs](https://hummingbot.org/docs/) | ||
- type: textarea | ||
id: feature-suggestion | ||
attributes: | ||
label: Feature Suggestion | ||
description: A clear and concise description of the feature request. If you have looked at the code and know exactly what code changes are needed then please consider submitting a pull request instead. | ||
placeholder: How you want to achieve the desired behavior | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: feature-impact | ||
attributes: | ||
label: Impact | ||
description: A succinct description of why you want the desired behavior specified above. | ||
placeholder: The desired behavior will allow me to.. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: feature-additional-context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context or screenshots about the feature request here (optional) |