Dummy with external id and failure #99
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 failure | |
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: "Fail workflow" | |
run: exit 1 | |
shell: bash |