generated from Robotic-Decision-Making-Lab/ros2-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
45 changed files
with
913 additions
and
1,295 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
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
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
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,26 @@ | ||
{ | ||
"name": "ROS 2 Dev Container", | ||
"dockerFile": "Dockerfile", | ||
"context": "../", | ||
"workspaceMount": "source=${localWorkspaceFolder},target=/home/ubuntu/ws_ros/src/auv_controllers,type=bind", | ||
"workspaceFolder": "/home/ubuntu/ws_ros/src/auv_controllers", | ||
"remoteUser": "ubuntu", | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"ms-azuretools.vscode-docker", | ||
"ms-python.python", | ||
"njpwerner.autodocstring", | ||
"ms-vscode.cpptools", | ||
"redhat.vscode-xml", | ||
"redhat.vscode-yaml", | ||
"smilerobotics.urdf", | ||
"DavidAnson.vscode-markdownlint", | ||
"esbenp.prettier-vscode", | ||
"xaver.clang-format", | ||
"charliermarsh.ruff", | ||
"ms-vscode.cmake-tools" | ||
] | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,11 +1,13 @@ | ||
# ignore everything | ||
|
||
* | ||
|
||
# Except the following | ||
!requirements-dev.txt | ||
|
||
!auv_controllers | ||
!velocity_controllers | ||
!thruster_allocation_matrix_controller | ||
!thruster_controllers | ||
!auv_control_msgs | ||
!auv_control_demos | ||
!ros2.repos |
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,44 @@ | ||
pull_request_rules: | ||
- name: backport to iron at reviewers' discretion | ||
conditions: | ||
- base=main | ||
- "label=backport-iron" | ||
actions: | ||
backport: | ||
branches: | ||
- iron | ||
|
||
- name: backport to humble at reviewers' discretion | ||
conditions: | ||
- base=main | ||
- "label=backport-humble" | ||
actions: | ||
backport: | ||
branches: | ||
- humble | ||
|
||
- name: backport to jazzy at reviewers' discretion | ||
conditions: | ||
- base=main | ||
- "label=backport-jazzy" | ||
actions: | ||
backport: | ||
branches: | ||
- jazzy | ||
|
||
- name: ask to resolve conflict | ||
conditions: | ||
- conflict | ||
- author!=mergify[bot] | ||
actions: | ||
comment: | ||
message: This pull request is in conflict. Could you fix it @{{author}}? | ||
|
||
- name: development targets main branch | ||
conditions: | ||
- base!=main | ||
- author!=mergify[bot] | ||
actions: | ||
comment: | ||
message: | | ||
Please target the `main` branch for development, we will backport the changes to {{base}} for you if approved and if they don't break API. |
Oops, something went wrong.