-
Notifications
You must be signed in to change notification settings - Fork 3
Add default github issue templates under ros2 org. #3
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
Merged
+153
−0
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,97 @@ | ||
| name: Bug Report | ||
| description: File a bug report. | ||
| labels: ["bug"] | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: "**Required Info:**" | ||
| - type: input | ||
| id: os | ||
| attributes: | ||
| label: "Operating System:" | ||
| description: | | ||
| Please try to be specific. | ||
| For Linux, please use the command `uname -a` from a terminal and copy paste its output here. | ||
| For Windows, open a terminal (Win key + R and type `cmd`), type the command `ver` and press enter. | ||
| Then copy paste the output here. | ||
| validations: | ||
| required: true | ||
| - type: input | ||
| id: version | ||
| attributes: | ||
| label: "ROS version or commit hash:" | ||
| description: | | ||
| **Examples:** *humble*, *jazzy*, ... | ||
| validations: | ||
| required: true | ||
| - type: input | ||
| id: rmw | ||
| attributes: | ||
| label: "RMW implementation (if applicable):" | ||
fujitatomoya marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| description: | | ||
| **Examples:** *rmw_fastrtps_cpp*, *rmw_connextdds*, *rmw_cyclonedds_cpp*, ... | ||
| You can check the ROS Middleware (RMW) implementation with the command: `ros2 doctor --report` | ||
| Find the line starting with `middleware name` in the report. | ||
| validations: | ||
| required: false | ||
| - type: textarea | ||
| id: rmw_configuration | ||
| attributes: | ||
| label: "RMW Configuration (if applicable):" | ||
| description: If you apply RMW specific configuration, post it here. | ||
| validations: | ||
| required: false | ||
| - type: input | ||
| id: clientlib | ||
| attributes: | ||
| label: "Client library (if applicable):" | ||
| description: | | ||
| **Examples:** *rclcpp*, *rclpy*, ... | ||
| Client libraries are the APIs that allow users to implement their ROS 2 code. | ||
| validations: | ||
| required: false | ||
| - type: textarea | ||
| id: doctor | ||
| attributes: | ||
| label: "'ros2 doctor --report' output" | ||
| description: | | ||
| It can help us knowing the details of your ROS environment. | ||
| Please use the command `ros2 doctor --report` and copy paste its output here. | ||
| render: Formatted | ||
| 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. | ||
| Include all the commands you ran in the exact order you ran them so that anyone can reproduce the bug. | ||
| placeholder: | | ||
| 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" | ||
| description: | | ||
| Please note any additional information to share here. | ||
| e.g) Is the reported bug a regression? If so, what is the last version of ROS where it still worked fine? | ||
| validations: | ||
| required: false | ||
This file contains hidden or 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,17 @@ | ||
| blank_issues_enabled: true | ||
fujitatomoya marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| 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: Discussion on ROS and ROS-related things. | ||
fujitatomoya marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| - name: ROS Discord | ||
| url: https://discord.com/servers/open-robotics-1077825543698927656 | ||
| about: ROS & Gazebo Discord Server. | ||
| - name: ROS Status Page | ||
| url: https://status.openrobotics.org/ | ||
| about: Status page for ROS websites and resources. | ||
This file contains hidden or 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,39 @@ | ||
| name: Feature request | ||
| description: File a feature request. | ||
| labels: ["enhancement"] | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: "Thanks for taking the time to fill out this feature request form!" | ||
fujitatomoya marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| - type: textarea | ||
| id: description | ||
| attributes: | ||
| label: Description | ||
| description: | | ||
| Description in a few sentences what the feature consists of and what problem it will solve. | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: motivation | ||
| attributes: | ||
| label: Motivation | ||
| description: | | ||
| Description what you are trying to solve, what is the problem to address with this Feature Request. | ||
| validations: | ||
| required: true | ||
| - type: textarea | ||
| id: implementation | ||
| attributes: | ||
| label: Design / Implementation Considerations | ||
| validations: | ||
| required: false | ||
| description: | | ||
| Relevant information on how the feature could be implemented and pros and cons of the different solutions. | ||
| - type: textarea | ||
| id: information | ||
| attributes: | ||
| label: Additional Information | ||
| validations: | ||
| required: false | ||
| description: | | ||
| If you have more details information, please describe here. | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.