This file contains hidden or 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: foo | ||
| on: workflow_dispatch | ||
| inputs: | ||
| uuid: | ||
| type: string | ||
| description: uuid to tag and track Github Actions run | ||
| default: "" | ||
| run-name: Update foo (${{ inputs.uuid}}) | ||
| jobs: | ||
| foo: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - run: echo Starting a basic job | ||