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

Use GitHub issue form feature for bug reports #2984

Merged
merged 1 commit into from
Sep 3, 2024
Merged
Show file tree
Hide file tree
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
33 changes: 0 additions & 33 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

100 changes: 100 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
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
Loading