|
| 1 | +# SPDX-FileCopyrightText: Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES. All rights reserved. |
| 2 | +# SPDX-License-Identifier: Apache-2.0 |
| 3 | +# |
| 4 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | +# you may not use this file except in compliance with the License. |
| 6 | +# You may obtain a copy of the License at |
| 7 | +# |
| 8 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +# |
| 10 | +# Unless required by applicable law or agreed to in writing, software |
| 11 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | +# See the License for the specific language governing permissions and |
| 14 | +# limitations under the License. |
| 15 | + |
| 16 | +name: Bug Report |
| 17 | +description: File a bug report |
| 18 | +title: "[BUG]: " |
| 19 | +labels: ["bug"] |
| 20 | + |
| 21 | +body: |
| 22 | + - type: markdown |
| 23 | + attributes: |
| 24 | + value: | |
| 25 | + Thanks for taking the time to fill out this bug report! |
| 26 | +
|
| 27 | + - type: input |
| 28 | + id: version |
| 29 | + attributes: |
| 30 | + label: Version |
| 31 | + description: What version of __PROJECT__ are you running? |
| 32 | + placeholder: "example: 23.02" |
| 33 | + validations: |
| 34 | + required: true |
| 35 | + |
| 36 | + - type: dropdown |
| 37 | + id: installation-method |
| 38 | + attributes: |
| 39 | + label: Which installation method(s) does this occur on? |
| 40 | + multiple: true |
| 41 | + options: |
| 42 | + - Docker |
| 43 | + - Conda |
| 44 | + - Pip |
| 45 | + - Source |
| 46 | + |
| 47 | + - type: textarea |
| 48 | + id: description |
| 49 | + attributes: |
| 50 | + label: Describe the bug. |
| 51 | + description: Also tell us, what did you expect to happen? |
| 52 | + placeholder: XYZ occured, I expected QRS results |
| 53 | + validations: |
| 54 | + required: true |
| 55 | + |
| 56 | + - type: textarea |
| 57 | + id: mvr |
| 58 | + attributes: |
| 59 | + label: Minimum reproducible example |
| 60 | + description: Please supply a [minimum reproducible code example](https://matthewrocklin.com/blog/work/2018/02/28/minimal-bug-reports) here |
| 61 | + render: shell |
| 62 | + |
| 63 | + - type: textarea |
| 64 | + id: logs |
| 65 | + attributes: |
| 66 | + label: Relevant log output |
| 67 | + description: Please paste relevant error and log output here |
| 68 | + render: shell |
| 69 | + |
| 70 | + - type: textarea |
| 71 | + id: env-printout |
| 72 | + attributes: |
| 73 | + label: Full env printout |
| 74 | + description: Please run and paste the output of the `print_env.sh` script here, to gather any other relevant environment details |
| 75 | + render: shell |
| 76 | + |
| 77 | + - type: textarea |
| 78 | + id: misc |
| 79 | + attributes: |
| 80 | + label: Other/Misc. |
| 81 | + description: Please enter any other helpful information here. |
| 82 | + |
| 83 | + - type: checkboxes |
| 84 | + id: terms |
| 85 | + attributes: |
| 86 | + label: Code of Conduct |
| 87 | + description: By submitting this issue, you agree to follow our [Code of Conduct](https://docs.rapids.ai/resources/conduct/) |
| 88 | + options: |
| 89 | + - label: I agree to follow __THIS PROJECT__'s Code of Conduct |
| 90 | + required: true |
| 91 | + - label: I have searched the [open bugs](https://github.com/jarmak-nv/issues?q=is%3Aopen+is%3Aissue+label%3Abug) and have found no duplicates for this bug report |
| 92 | + required: true |
0 commit comments