-
Notifications
You must be signed in to change notification settings - Fork 317
49 lines (47 loc) · 1.13 KB
/
prerelease-check.yml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Pre-Release Check
on:
workflow_dispatch:
inputs:
ros_distro:
description: 'Chose ROS distribution'
required: true
default: 'rolling'
type: choice
options:
<<<<<<< HEAD
- foxy
- galactic
- humble
=======
- humble
- iron
>>>>>>> bb087e2 (Fix the spawner to support full wildcard parameter entries (#1933))
- rolling
branch:
description: 'Chose branch for distro'
required: true
default: 'master'
type: choice
options:
<<<<<<< HEAD
- foxy
- galactic
- humble
=======
- humble
- iron
>>>>>>> bb087e2 (Fix the spawner to support full wildcard parameter entries (#1933))
- master
jobs:
pre_release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch }}
- name: industrial_ci
uses: ros-industrial/industrial_ci@master
env:
ROS_DISTRO: ${{ github.event.inputs.ros_distro }}
PRERELEASE: true
BASEDIR: ${{ github.workspace }}/.work