File tree Expand file tree Collapse file tree 3 files changed +86
-0
lines changed Expand file tree Collapse file tree 3 files changed +86
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Humble - pre-release
2+ # author: Christoph Froehlich <christoph.froehlich@ait.ac.at>
3+
4+ on :
5+ workflow_dispatch :
6+ inputs :
7+ downstream_depth :
8+ description : ' The depth of the depends-on tree to be included in the overlay workspace (-1 implies unlimited, default: 0)'
9+ required : false
10+ default : 0
11+ type : number
12+ pull_request :
13+ branches :
14+ - humble
15+ types :
16+ - opened # default
17+ - reopened # default
18+ - synchronize # default
19+ - labeled # also if a label changes
20+
21+ jobs :
22+ default :
23+ uses : ros-controls/ros2_control_ci/.github/workflows/reusable-prerelease.yml@master
24+ with :
25+ ros_distro : humble
26+ # downstream_depth is not set on pull_request event
27+ prerelease_downstream_depth : ${{ github.event_name == 'pull_request' && '0' || inputs.downstream_depth }}
Original file line number Diff line number Diff line change 1+ name : Jazzy - pre-release
2+ # author: Christoph Froehlich <christoph.froehlich@ait.ac.at>
3+
4+ on :
5+ workflow_dispatch :
6+ inputs :
7+ downstream_depth :
8+ description : ' The depth of the depends-on tree to be included in the overlay workspace (-1 implies unlimited, default: 0)'
9+ required : false
10+ default : 0
11+ type : number
12+ pull_request :
13+ branches :
14+ - jazzy
15+ types :
16+ - opened # default
17+ - reopened # default
18+ - synchronize # default
19+ - labeled # also if a label changes
20+
21+ jobs :
22+ default :
23+ uses : ros-controls/ros2_control_ci/.github/workflows/reusable-prerelease.yml@master
24+ with :
25+ ros_distro : jazzy
26+ # downstream_depth is not set on pull_request event
27+ prerelease_downstream_depth : ${{ github.event_name == 'pull_request' && '0' || inputs.downstream_depth }}
Original file line number Diff line number Diff line change 1+ name : Rolling - pre-release
2+ # author: Christoph Froehlich <christoph.froehlich@ait.ac.at>
3+
4+ on :
5+ workflow_dispatch :
6+ inputs :
7+ downstream_depth :
8+ description : ' The depth of the depends-on tree to be included in the overlay workspace (-1 implies unlimited, default: 0)'
9+ required : false
10+ default : 0
11+ type : number
12+ pull_request :
13+ branches :
14+ - master
15+ types :
16+ - opened # default
17+ - reopened # default
18+ - synchronize # default
19+ - labeled # also if a label changes
20+
21+ jobs :
22+ default :
23+ strategy :
24+ fail-fast : false
25+ matrix :
26+ ROS_DISTRO : [kilted, rolling]
27+
28+ uses : ros-controls/ros2_control_ci/.github/workflows/reusable-prerelease.yml@master
29+ with :
30+ ros_distro : ${{ matrix.ROS_DISTRO }}
31+ # downstream_depth is not set on pull_request event
32+ prerelease_downstream_depth : ${{ github.event_name == 'pull_request' && '0' || inputs.downstream_depth }}
You can’t perform that action at this time.
0 commit comments