Skip to content

Commit

Permalink
test manual trigger argument default value
Browse files Browse the repository at this point in the history
  • Loading branch information
georgemccabe committed Jan 24, 2024
1 parent b66f0e1 commit ba397e5
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/workflow_dispatch_arg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: WD argument

on:
workflow_dispatch:
inputs:
force_met_image:
description: 'MET DockerHub repo to force run to use, e.g. met:11.1.0 or met-dev:feature_XYZ_name-PR. Leave this blank to determine repo automatically.'

jobs:

test_var:
name: testing var
runs-on: ubuntu-latest
steps:
- name: check value
run: echo value is X${SET_MET_IMAGE}X
env:
SET_MET_IMAGE: ${{ github.event.inputs.force_met_image }}

0 comments on commit ba397e5

Please sign in to comment.