-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* switch humble to rolling CI * add jazzy CI in main branch * update README * add mergify config * add backport (humble only) rule * fix broken ee_pose_broadcaster * fix package.xml
- Loading branch information
1 parent
7cc84a1
commit df00de5
Showing
6 changed files
with
75 additions
and
4 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,42 @@ | ||
pull_request_rules: | ||
- name: Backport to humble | ||
conditions: | ||
- base=main | ||
- "label=backport-humble" | ||
actions: | ||
backport: | ||
branches: | ||
- humble | ||
|
||
- name: Ask to resolve conflict | ||
conditions: | ||
- conflict | ||
- author!=mergify[bot] | ||
- author!=dependabot[bot] | ||
actions: | ||
comment: | ||
message: This pull request is in conflict. Could you fix it | ||
@{{author}}? | ||
|
||
- name: Ask to resolve conflict for backports | ||
conditions: | ||
- conflict | ||
- author=mergify[bot] | ||
actions: | ||
comment: | ||
message: This pull request is in conflict. Could you fix it | ||
@tpoignonec? | ||
|
||
- name: development targets main branch | ||
conditions: | ||
- base!=main | ||
- author!=tpoignonec | ||
- author!=mergify[bot] | ||
- author!=dependabot[bot] | ||
actions: | ||
comment: | ||
message: | | ||
@{{author}}, all pull requests must be targeted towards the `master` | ||
development branch. Once merged into `master`, it is possible to | ||
backport to `{{base}}`, but it must be in `master` to have these | ||
changes reflected into new distributions. |
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,27 @@ | ||
name: CI (jazzy) | ||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 0 * * 0' | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: ubuntu:noble | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: ros-tooling/setup-ros@v0.7 | ||
with: | ||
use-ros2-testing: true | ||
- name: Print ls and pwd | ||
run: | | ||
ls | ||
pwd | ||
- uses: ros-tooling/action-ros-ci@v0.3 | ||
with: | ||
target-ros2-distro: jazzy | ||
vcs-repo-file-url: ./forcedimension_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
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