From e6e8a017186c1bfce1b63572f87157ab21f358b5 Mon Sep 17 00:00:00 2001 From: Christoph Froehlich Date: Sat, 4 Nov 2023 19:43:35 +0000 Subject: [PATCH] Remvoe prerelease check workflow --- .github/workflows/prerelease-check.yml | 39 -------------------------- 1 file changed, 39 deletions(-) delete mode 100644 .github/workflows/prerelease-check.yml diff --git a/.github/workflows/prerelease-check.yml b/.github/workflows/prerelease-check.yml deleted file mode 100644 index 809471897..000000000 --- a/.github/workflows/prerelease-check.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: Pre-Release Check - -on: - workflow_dispatch: - inputs: - ros_distro: - description: 'Chose ROS distribution' - required: true - default: 'rolling' - type: choice - options: - - foxy - - galactic - - humble - - rolling - branch: - description: 'Chose branch for distro' - required: true - default: 'master' - type: choice - options: - - foxy - - galactic - - humble - - 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