-
Notifications
You must be signed in to change notification settings - Fork 32
32 lines (29 loc) · 1018 Bytes
/
pre-release.yml
File metadata and controls
32 lines (29 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Rolling - pre-release
# author: Christoph Froehlich <christoph.froehlich@ait.ac.at>
on:
workflow_dispatch:
inputs:
downstream_depth:
description: 'The depth of the depends-on tree to be included in the overlay workspace (-1 implies unlimited, default: 0)'
required: false
default: 0
type: number
pull_request:
branches:
- main
types:
- opened # default
- reopened # default
- synchronize # default
- labeled # also if a label changes
jobs:
default:
strategy:
fail-fast: false
matrix:
ROS_DISTRO: [jazzy, kilted] #, rolling] # rolling is currently disabled due to the timeout issues in CI
uses: ros-controls/ros2_control_ci/.github/workflows/reusable-prerelease.yml@master
with:
ros_distro: ${{ matrix.ROS_DISTRO }}
# downstream_depth is not set on pull_request event
prerelease_downstream_depth: ${{ github.event_name == 'pull_request' && '0' || inputs.downstream_depth }}