Skip to content

Commit ba6b153

Browse files
committed
Merge branch 'paperwork' into 'main'
Revamp GitHub templates See merge request omniverse/newton-physics/mujoco-usd-converter!95
2 parents c6c429c + d5aea9b commit ba6b153

File tree

6 files changed

+67
-189
lines changed

6 files changed

+67
-189
lines changed

.github/ISSUE_TEMPLATE/bug_report_form.yml renamed to .github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
name: Bug Report
55
description: File a bug report
6-
title: "[BUG]: "
76
labels: ["bug"]
87

98
body:
@@ -22,29 +21,30 @@ body:
2221
required: true
2322

2423
- type: dropdown
25-
id: installation-method
24+
id: installation_method
2625
attributes:
2726
label: Did you install official release artifacts or build from source?
28-
multiple: true
2927
options:
3028
- Official release artifacts
3129
- Built from Source
30+
validations:
31+
required: true
3232

3333
- type: dropdown
3434
id: modifications
3535
attributes:
3636
label: Did you modify the sdist, whl, or source code (including the pyproject.toml or uv.lock)?
37-
multiple: true
3837
options:
39-
- Yes
40-
- No
38+
- "No"
39+
- "Yes"
40+
validations:
41+
required: true
4142

4243
- type: input
43-
id: py-version
44+
id: py_version
4445
attributes:
4546
label: Python Version
4647
description: What version of Python are you using?
47-
placeholder: "example: 3.10 or None"
4848
validations:
4949
required: true
5050

@@ -53,7 +53,7 @@ body:
5353
attributes:
5454
label: Operating System
5555
description: What Operating System / Platform are you using?
56-
placeholder: "example: windows-x86_64"
56+
placeholder: "example: Ubuntu 22.04 Linux x86_64"
5757
validations:
5858
required: true
5959

@@ -71,7 +71,7 @@ body:
7171
attributes:
7272
label: Minimum reproducible example
7373
description: Please supply a minimum reproducible example here
74-
render: shell
74+
render: python
7575

7676
- type: textarea
7777
id: logs
@@ -80,12 +80,6 @@ body:
8080
description: Please paste relevant error and log output here
8181
render: shell
8282

83-
- type: textarea
84-
id: misc
85-
attributes:
86-
label: Other/Misc.
87-
description: Please enter any other helpful information here.
88-
8983
- type: checkboxes
9084
id: terms
9185
attributes:
@@ -94,5 +88,5 @@ body:
9488
options:
9589
- label: I agree to follow mujoco-usd-converter Code of Conduct
9690
required: true
97-
- label: I have searched the [open bugs](https://github.com/newton-physics/mujoco-usd-converter/issues?q=is%3Aopen+is%3Aissue+label%3Abug) and have found no duplicates
91+
- label: I have searched the [open issues](https://github.com/newton-physics/mujoco-usd-converter/issues) and have found no duplicates
9892
required: true
Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,20 @@
11
# SPDX-FileCopyrightText: Copyright (c) 2023-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
22
# SPDX-License-Identifier: Apache-2.0
33

4-
name: Documentation - New Documentation Request
5-
description: Request additions to documentation
6-
title: "[DOC]: "
7-
labels: ["doc"]
4+
name: Documentation
5+
description: Request changes or additions to documentation
6+
labels: ["documentation"]
87

98
body:
109
- type: markdown
1110
attributes:
1211
value: |
1312
Thanks for taking the time to improve our documentation!
1413
15-
- type: dropdown
16-
id: criticality
17-
attributes:
18-
label: How would you describe the priority of this documentation request
19-
options:
20-
- Critical (currently preventing usage)
21-
- High
22-
- Medium
23-
- Low (would be nice)
24-
validations:
25-
required: true
26-
2714
- type: textarea
2815
id: problem
2916
attributes:
30-
label: Describe the future/missing documentation
17+
label: Describe the changes or additions to documentation
3118
placeholder: A code snippet mentions function foo(args) but I cannot find any documentation on it.
3219
validations:
3320
required: true
@@ -47,5 +34,5 @@ body:
4734
options:
4835
- label: I agree to follow mujoco-usd-converter Code of Conduct
4936
required: true
50-
- label: I have searched the [open bugs](https://github.com/newton-physics/mujoco-usd-converter/issues?q=is%3Aopen+is%3Aissue+label%3Abug) and have found no duplicates
37+
- label: I have searched the [open issues](https://github.com/newton-physics/mujoco-usd-converter/issues) and have found no duplicates
5138
required: true

.github/ISSUE_TEMPLATE/documentation_request_correction.yml

Lines changed: 0 additions & 58 deletions
This file was deleted.
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# SPDX-FileCopyrightText: Copyright (c) 2023-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
# SPDX-License-Identifier: Apache-2.0
3+
4+
name: Feature Request
5+
description: Request new or improved functionality or changes to existing functionality
6+
labels: ["enhancement"]
7+
8+
body:
9+
- type: markdown
10+
attributes:
11+
value: |
12+
Thanks for taking the time to fill out this feature request!
13+
14+
- type: dropdown
15+
id: new_or_improvement
16+
attributes:
17+
label: Is this a new feature, an improvement, or a change to existing functionality?
18+
options:
19+
- New Feature
20+
- Improvement
21+
- Change
22+
validations:
23+
required: true
24+
25+
- type: textarea
26+
id: Feature_Description
27+
attributes:
28+
label: Feature Description
29+
description: Please provide clear description of the feature you request
30+
placeholder: >
31+
For new feature request, consider using the following format to describe the feature from the end-user perspective:
32+
As a <persona>, I <want to>, <so that>.
33+
validations:
34+
required: true
35+
36+
- type: textarea
37+
id: misc
38+
attributes:
39+
label: Additional context or alternatives
40+
description: Add any other context, code examples, references to existing implementations, or alternatives you have considered
41+
42+
- type: checkboxes
43+
id: terms
44+
attributes:
45+
label: Code of Conduct
46+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/newton-physics/mujoco-usd-converter/blob/HEAD/CODE_OF_CONDUCT.md)
47+
options:
48+
- label: I agree to follow mujoco-usd-converter Code of Conduct
49+
required: true
50+
- label: I have searched the [open issues](https://github.com/newton-physics/mujoco-usd-converter/issues) and have found no duplicates
51+
required: true

.github/ISSUE_TEMPLATE/feature_request_form.yml

Lines changed: 0 additions & 94 deletions
This file was deleted.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,3 @@
55

66
## Checklist
77
- [ ] I am familiar with the [Contributing Guidelines](https://github.com/newton-physics/mujoco-usd-converter/blob/HEAD/CONTRIBUTING.md).
8-
- [ ] I understand that this Pull Request will not be merged, it is only for demonstration & discussion purposes.
9-
- [ ] I do not require attribution for any code submitted via this Pull Request, and will not pursue attribution for any code resembling this submission which may be added to this repository in the future.

0 commit comments

Comments
 (0)