Skip to content

Dummy with external id and timeout #110

Dummy with external id and timeout

Dummy with external id and timeout #110

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