Skip to content

Bump the actions-version group with 3 updates #42

Bump the actions-version group with 3 updates

Bump the actions-version group with 3 updates #42

Workflow file for this run

name: Test
on:
pull_request:
workflow_dispatch:
jobs:
start_workflow:
name: Start
uses: ./.github/workflows/start.yaml
with:
number: 1
secrets: inherit
check_output:
name: Check output
needs: start_workflow
runs-on: ubuntu-latest
steps:
- name: "Check active runners"
run: |
echo Number of active runners: ${{ needs.start_workflow.outputs.active }}
if [[ "${{ needs.start_workflow.outputs.active }}" != "1" ]]
then
echo "::error:: The action runner failed to start."
exit 1
fi