-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add issue templates #16
Merged
pavithraes
merged 5 commits into
conda-incubator:main
from
steff456:add-issue-templates
Aug 12, 2023
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,84 @@ | ||
name: "Bug report 🐛" | ||
description: "Create a report to help us fix something that is currently broken." | ||
title: "[BUG] - <title>" | ||
labels: ["type: bug 🐛"] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
# Welcome 👋 | ||
|
||
Thanks for using conda-store and taking some time to contribute to this project. | ||
|
||
Please fill out each section below. This info allows maintainers to diagnose (and fix!) your issue as | ||
quickly as possible. | ||
Before submitting a bug, please make sure the issue hasn't been already addressed by searching through | ||
the past issues in this repository. | ||
|
||
- type: textarea | ||
attributes: | ||
label: Describe the bug | ||
description: | | ||
A clear and concise description of what the bug is. | ||
We suggest using bullets (indicated by * or -). | ||
placeholder: Be as precise as you can. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Expected behavior | ||
description: | | ||
A clear and concise description of what you expected to happen. | ||
We suggest using bullets (indicated by * or -). | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: How to Reproduce the problem? | ||
description: | | ||
Please provide a minimal code example to reproduce the error. | ||
Be as succinct as possible, and provide detailed step by step guidelines to reproduce the bug (using numbered items). | ||
If you have created a GitHub gist, you can paste the link in this box instead. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Output | ||
description: | | ||
Provide the output of the steps above, including screenshots and any tracebacks/logs. | ||
|
||
Please also ensure that the "How to reproduce the problem?" section contains matching | ||
instructions for reproducing this. | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
attributes: | ||
label: Versions and dependencies used. | ||
description: | | ||
Describe your environment: | ||
- Conda version (use `conda --version`) | ||
- Operating system | ||
- Node version | ||
- Dependencies installed and their version | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
attributes: | ||
label: Anything else? | ||
description: | | ||
Links? References? Anything that will give us more context about the issue you are encountering! | ||
|
||
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. | ||
validations: | ||
required: false | ||
|
||
- type: markdown | ||
attributes: | ||
value: > | ||
Thanks for contributing 🎉! |
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 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: conda-store-ui documentation | ||
url: https://conda-incubator.github.io/conda-store-ui/ | ||
about: Check out the conda-store documentation | ||
- name: jupyterlab-conda-store issue tracker | ||
about: Did you find a bug or want to make a suggestion? Open an issue on our tracker. | ||
url: https://https://github.com/conda-incubator/jupyterlab-conda-store/issues/new/choose |
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,39 @@ | ||
name: "Feature request" | ||
description: "Create a feature request to help us improve" | ||
title: "[ENH] - <title>" | ||
labels: ["type: enhancement 💅"] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
# Welcome 👋 | ||
|
||
Thanks for using conda-store and taking some time to contribute to this project. | ||
- type: textarea | ||
attributes: | ||
label: Feature description | ||
description: | | ||
Describe what you are proposing. Provide as much context as possible and link to related issues and/or pull requests. | ||
This section should contain "what" you are proposing. | ||
Are you having any problems? Briefly describe what your painpoints are. For example: "I'm always frustrated when ..." | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Value and/or benefit | ||
description: | | ||
What is the value in adding this feature, and who will benefit from it? Include any information that could help us prioritize the issue. | ||
This section should contain "why" this issue should be resolved. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Anything else? | ||
description: | | ||
Links? References? Anything that will give us more context about the issue you are encountering! | ||
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. | ||
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,46 @@ | ||
name: "General issue 💡" | ||
description: "A general template for many kinds of issues." | ||
title: "<title>" | ||
labels: ["type: question 🤔"] | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
# Welcome 👋 | ||
|
||
Thanks for using conda-store and taking some time to contribute to this project. | ||
|
||
Please fill out each section below. This info allows maintainers to diagnose (and fix!) your issue as | ||
quickly as possible. | ||
Before submitting a bug, please make sure the issue hasn't been already addressed by searching through | ||
the past issues in this repository. | ||
|
||
- type: textarea | ||
attributes: | ||
label: Context | ||
description: | | ||
Describe what you are proposing. Provide as much context as possible and link to related issues and/or pull requests. | ||
This section should contain "what" you are proposing. | ||
Are you having any problems? Briefly describe what your pain points are. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Value and/or benefit | ||
description: | | ||
What is the value of adding this feature, and who will benefit from it? Include any information that could help us prioritize the issue. | ||
This section should contain "why" this issue should be resolved. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Anything else? | ||
description: | | ||
Links? References? Anything that will give us more context about the issue you are encountering! | ||
|
||
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. | ||
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,26 @@ | ||
Fixes # . | ||
|
||
<!-- Reference the issue corresponding to this PR. If an issues does not exist, consider opening one or writing a detailed description for what this PR changes and it's value in the following sections. --> | ||
<!-- GitHub Docs on Keywords: https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests --> | ||
|
||
## Description | ||
|
||
<!-- What is the purpose of this pull request? --> | ||
|
||
This pull request: | ||
|
||
- a | ||
- b | ||
- c | ||
|
||
## Pull request checklist | ||
|
||
<!-- Quick checklist to ensure high-quality Pull Request. --> | ||
|
||
- [ ] Did you test this change locally? | ||
- [ ] Did you update the documentaion (if required)? | ||
- [ ] Did you add/update relevant tests for this change (if required)? | ||
|
||
## Additional information | ||
|
||
<!-- Do you have any other information about this pull request? This may include screenshots, references, and/or implementation notes. --> |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From my understanding, there are shared docs for the JupyterLab extension and the conda-store-ui