|
| 1 | +# SPDX-FileCopyrightText: Copyright (c) 2023-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. |
| 2 | +# SPDX-License-Identifier: Apache-2.0 |
| 3 | + |
| 4 | +name: Bug Report |
| 5 | +description: File a bug report |
| 6 | +labels: ["bug"] |
| 7 | + |
| 8 | +body: |
| 9 | + - type: markdown |
| 10 | + attributes: |
| 11 | + value: | |
| 12 | + Thanks for taking the time to fill out this bug report! |
| 13 | +
|
| 14 | + - type: input |
| 15 | + id: version |
| 16 | + attributes: |
| 17 | + label: Version |
| 18 | + description: What version of urdf-usd-converter are you running? |
| 19 | + placeholder: "example: v1.0.0" |
| 20 | + validations: |
| 21 | + required: true |
| 22 | + |
| 23 | + - type: dropdown |
| 24 | + id: installation_method |
| 25 | + attributes: |
| 26 | + label: Did you install official release artifacts or build from source? |
| 27 | + options: |
| 28 | + - Official release artifacts |
| 29 | + - Built from Source |
| 30 | + validations: |
| 31 | + required: true |
| 32 | + |
| 33 | + - type: dropdown |
| 34 | + id: modifications |
| 35 | + attributes: |
| 36 | + label: Did you modify the sdist, whl, or source code (including the pyproject.toml or uv.lock)? |
| 37 | + options: |
| 38 | + - "No" |
| 39 | + - "Yes" |
| 40 | + validations: |
| 41 | + required: true |
| 42 | + |
| 43 | + - type: input |
| 44 | + id: py_version |
| 45 | + attributes: |
| 46 | + label: Python Version |
| 47 | + description: What version of Python are you using? |
| 48 | + validations: |
| 49 | + required: true |
| 50 | + |
| 51 | + - type: input |
| 52 | + id: platform |
| 53 | + attributes: |
| 54 | + label: Operating System |
| 55 | + description: What Operating System / Platform are you using? |
| 56 | + placeholder: "example: Ubuntu 22.04 Linux x86_64" |
| 57 | + validations: |
| 58 | + required: true |
| 59 | + |
| 60 | + - type: textarea |
| 61 | + id: description |
| 62 | + attributes: |
| 63 | + label: Describe the bug. |
| 64 | + description: Also tell us, what did you expect to happen? |
| 65 | + placeholder: XYZ occurred, I expected QRS results |
| 66 | + validations: |
| 67 | + required: true |
| 68 | + |
| 69 | + - type: textarea |
| 70 | + id: mvr |
| 71 | + attributes: |
| 72 | + label: Minimum reproducible example |
| 73 | + description: Please supply a minimum reproducible example here |
| 74 | + render: python |
| 75 | + |
| 76 | + - type: textarea |
| 77 | + id: logs |
| 78 | + attributes: |
| 79 | + label: Relevant log output |
| 80 | + description: Please paste relevant error and log output here |
| 81 | + render: shell |
| 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://github.com/newton-physics/urdf-usd-converter/blob/HEAD/CODE_OF_CONDUCT.md) |
| 88 | + options: |
| 89 | + - label: I agree to follow urdf-usd-converter Code of Conduct |
| 90 | + required: true |
| 91 | + - label: I have searched the [open issues](https://github.com/newton-physics/urdf-usd-converter/issues) and have found no duplicates |
| 92 | + required: true |
0 commit comments