Lock file maintenance #132
Workflow file for this run
This file contains hidden or 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: Test | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| start_workflow: | |
| name: Start | |
| uses: ./.github/workflows/start.yaml | |
| with: | |
| number: 1 | |
| ref: ${{ github.head_ref }} | |
| 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 |