Dummy with external id #529
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 | |
on: | |
workflow_dispatch: | |
inputs: | |
to-greet: | |
required: false | |
description: Whom to greet | |
default: "World" | |
type: string | |
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 | |
greetJob: | |
runs-on: ubuntu-latest | |
needs: beforeAll | |
steps: | |
- name: Greet | |
run: | | |
echo "::notice title=Greet::Hello ${{ github.event.inputs.to-greet }}" |