-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Peter Borkuti <[email protected]>
- Loading branch information
1 parent
eea42eb
commit b9044cc
Showing
3 changed files
with
94 additions
and
0 deletions.
There are no files selected for viewing
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,63 @@ | ||
name: Bug Report | ||
description: File a bug report. | ||
title: "[Bug]: " | ||
labels: ["bug"] | ||
projects: ["octo-org/1", "octo-org/44"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: "**Required Info:**" | ||
- type: input | ||
id: os | ||
attributes: | ||
label: "Operating System:" | ||
validations: | ||
required: true | ||
- type: input | ||
id: version | ||
attributes: | ||
label: "Version or commit hash:" | ||
validations: | ||
required: true | ||
- type: input | ||
id: dds | ||
attributes: | ||
label: "DDS implementation:" | ||
validations: | ||
required: true | ||
- type: input | ||
id: clientlib | ||
attributes: | ||
label: "Client library (if applicable):" | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: repro | ||
attributes: | ||
label: "Steps to reproduce issue" | ||
description: "How do you trigger this bug? Please walk us through it step by step." | ||
value: | | ||
1. | ||
2. | ||
3. | ||
... | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expected | ||
attributes: | ||
label: "Expected behavior" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: actual | ||
attributes: | ||
label: "Actual behavior" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: addinfo | ||
attributes: | ||
label: "Additional information" | ||
validations: | ||
required: false |
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,11 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Robotics Stack Exchange | ||
url: https://robotics.stackexchange.com/ | ||
about: Please ask and answer questions here. | ||
- name: Documentation for Active ROS Distributions | ||
url: https://docs.ros.org/ | ||
about: Please check our documentation here. | ||
- name: ROS Discourse | ||
url: https://discourse.ros.org/ | ||
about: Talk about ROS and ROS related things. |
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,20 @@ | ||
name: Feature request | ||
description: File a feature request. | ||
title: "[Feature]: " | ||
labels: ["feature"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: "Thanks for taking the time to fill out this feature request form!" | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Feature description | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: implementation | ||
attributes: | ||
label: Implementation considerations | ||
validations: | ||
required: false |