Dummy with external id and timeout #110
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: Dummy with external id and timeout | |
on: | |
workflow_dispatch: | |
inputs: | |
external_ref_id: | |
description: Id to use for unique run detection | |
required: false | |
type: string | |
default: "" | |
jobs: | |
beforeAll: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ${{ github.event.inputs.external_ref_id }} | |
run: echo "a run cmd must be present to avoid syntax error ;)" | |
- name: "Wait 30 seconds" | |
run: sleep 30s | |
shell: bash |