Workflow Dispatch Crash Tests #501
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: Workflow Dispatch Crash Tests | |
on: | |
# Manually dispatched workflow action | |
workflow_dispatch: | |
inputs: | |
runner: | |
description: 'Self hosted gh runner' | |
required: true | |
jobs: | |
workflow-dispatch-tests: | |
runs-on: [self-hosted, linux, "${{ inputs.runner }}"] | |
steps: | |
- name: Sleep for an hour to give the integration test some time to crash the runner. | |
run: | | |
sleep 3600 |