-
Notifications
You must be signed in to change notification settings - Fork 527
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use GitHub issue form feature for bug reports
- Loading branch information
1 parent
94e84a1
commit cd9326e
Showing
2 changed files
with
100 additions
and
33 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,100 @@ | ||
name: Bug report | ||
description: Create a report to help us improve | ||
labels: ["bug"] | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
placeholder: Overview of your issue here. | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: distro | ||
attributes: | ||
label: ROS Distro | ||
# Keep this updated when new distros come out! | ||
options: | ||
- Humble | ||
- Iron | ||
- Jazzy | ||
- Rolling | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: os | ||
attributes: | ||
label: OS and version | ||
placeholder: e.g. Ubuntu 22.04 | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: build-type | ||
attributes: | ||
label: Source or binary build? | ||
options: | ||
- Source | ||
- Binary | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: binary-version | ||
attributes: | ||
label: If binary, which release version? | ||
validations: | ||
required: false | ||
|
||
- type: input | ||
id: source-version | ||
attributes: | ||
label: If source, which branch? | ||
validations: | ||
required: false | ||
|
||
- type: dropdown | ||
id: middleware | ||
attributes: | ||
label: Which RMW are you using? | ||
options: | ||
- FastRTPS | ||
- CycloneDDS | ||
|
||
- type: markdown | ||
attributes: | ||
value: "## If you're on Humble and responded FastRTPS to the above question, try CycloneDDS first!" | ||
|
||
- type: textarea | ||
id: repro-steps | ||
attributes: | ||
label: Steps to Reproduce | ||
placeholder: Tell us how to reproduce this issue. Attempt to provide a working demo, perhaps using Docker. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: Expected behavior | ||
placeholder: Tell us what should happen | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: actual | ||
attributes: | ||
label: Actual behavior | ||
placeholder: Tell us what happens instead | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Backtrace or Console output | ||
placeholder: Use a GitHub Gist to copy-paste the console output or segfault backtrace using gdb. | ||
validations: | ||
required: false |