Skip to content
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

new cdn issue template #13096

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
102 changes: 102 additions & 0 deletions .github/ISSUE_TEMPLATE/cdn_issues.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
name: CDN Issue Report
description: Report issues with a CDN-backed anaconda.org channel (such as conda-forge, bioconda, nvidia, etc).
labels: ['type-bug', 'anaconda-sync']
body:
- type: markdown
attributes:
value: |
Thank you for helping us identify bugs and issues in our products.

We kindly ask that you take the time to:
- Search through [existing issues](https://github.com/ContinuumIO/anaconda-issues/issues) to verify whether your bug or issue has already been reported.
- Fill in all of the fields below, as best you can.
- Review and comply with our [Anaconda Community Code of Conduct](https://www.anaconda.com/community-code-of-conduct/).

Again, thank you for your contribution and for helping Anaconda better serve its community of users. 🐍

- type: checkboxes
id: checks
attributes:
label: Checklist
description: "Please confirm the following:"
options:
- label: I added a descriptive title.
required: true
- label: I searched through [existing issues](https://github.com/ContinuumIO/anaconda-issues/issues) and couldn't find a solution or duplicate issue.
required: true
- label: I searched on the web (e.g. Google) and didn't find any helpful information.
required: true
- label: I searched the [Anaconda documentation](https://docs.anaconda.com/) and didn't find any helpful information.
required: true

- type: checkboxes
id: product
attributes:
label: Impacted product
description: Please indicate the product(s) for which you are reporting the bug or issue.
options:
- label: Anaconda.org
required: false
- label: CDN
required: false
- label: conda-forge
required: false
- label: bioconda
required: false
- label: nvidia
required: false

- type: textarea
id: what-happened
attributes:
label: What happened?
description: What is the error, bug, CVE, or other issue? (Please include steps to reproduce the issue and any relevant error output, if available.)
placeholder: Describe the error, bug, CVE, or other issue.
validations:
required: true
- type: textarea
id: expected-behavior
attributes:
label: Expected behavior or outcome
description: What is the expected behavior or outcome?
placeholder: Tell us what you think is the expected behavior or outcome.
validations:
required: true
- type: textarea
id: info
attributes:
label: Conda info
description: |
Let's examine your installation. Run the following command and paste the output in the field below.

```bash
conda info
```
render: shell
- type: textarea
id: config
attributes:
label: Conda config
description: |
Let's examine your configurations. Run the following command and paste the output in the field below.

```bash
conda config --show-sources
```
render: shell
- type: textarea
id: list
attributes:
label: Conda list
description: |
Let's examine the packages installed in your environment and the channels they came from. Make sure you are in the environment where you are experiencing the issues. Run the following command and paste the output in the field below.

```bash
conda list --show-channel-urls
```
render: shell
- type: textarea
id: context
attributes:
label: Additional information
description: Add any additional information or screenshots that you think may help us resolve your issue.