-
Notifications
You must be signed in to change notification settings - Fork 151
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Issue Templates: Add Feature Request Template and Improve Issu…
…e Submission Process (#580) * github/issue-template: customized options for new issues * fix bug bounty link * update survey URL * update text
- Loading branch information
1 parent
5463193
commit 66deeea
Showing
3 changed files
with
97 additions
and
15 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,11 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: 🐛 Bug Bounty | ||
url: https://safetycli.com/resources/bug-bounty | ||
about: Participate in our Bug Bounty program and get rewarded! | ||
- name: 📖 Safety CLI Documentation | ||
url: https://docs.safetycli.com/safety-docs | ||
about: Check the Safety CLI documentation for in-depth overview of all the available commands and options. | ||
- name: 💻 Take Our Survey! | ||
url: https://form.typeform.com/to/ttlLdSaM | ||
about: We're on a mission to make Safety CLI the best it can be, and we need YOUR help. We've put together a brief survey to understand how you use Safety CLI, what you love about it, and where you think we can do better. |
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,86 @@ | ||
name: 🚀 Feature Request | ||
description: Suggest an idea or a feature for this project | ||
labels: ["feature request"] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this feature request! | ||
- type: checkboxes | ||
id: checklist | ||
attributes: | ||
label: Checklist | ||
options: | ||
- label: I agree to the terms within the [Safety Code of Conduct](https://github.com/pyupio/safety/blob/main/CODE_OF_CONDUCT.md). | ||
required: true | ||
|
||
- type: textarea | ||
id: safety-version | ||
attributes: | ||
label: Safety version | ||
description: Specify the version of Safety you're using. | ||
placeholder: e.g., 3.2.5 | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: python-version | ||
attributes: | ||
label: Python version | ||
description: Specify the version of Python you're using. | ||
placeholder: e.g., 3.11.2 | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: os | ||
attributes: | ||
label: Operating System | ||
description: Specify the operating system you're using. | ||
placeholder: e.g., macOS 13, Windows 10 | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Describe the problem you'd like to have solved | ||
description: A clear and concise description of what the problem is. | ||
placeholder: My life would be a lot simpler if... | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: ideal-solution | ||
attributes: | ||
label: Describe the ideal solution | ||
description: A clear and concise description of what you want to happen. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: alternatives-and-workarounds | ||
attributes: | ||
label: Alternatives and current workarounds | ||
description: A clear and concise description of any alternatives you've considered or any workarounds that are currently in place. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: Additional context | ||
description: Add any other context or screenshots about the feature request here. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: what-i-did | ||
attributes: | ||
label: What I Did | ||
description: Describe what you were trying to get done. Tell us what happened, what went wrong, and what you expected to happen. | ||
placeholder: Paste the command(s) you ran and the output. If there was a crash, please include the traceback here. | ||
validations: | ||
required: true |