Fix the spawner to support full wildcard parameter entries (#1933) #1
Workflow file for this run
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
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 |