From 348ee93f98f035dfb589fd0621dfa0e3eb03b7f3 Mon Sep 17 00:00:00 2001 From: Thomas Evans <76004952+tevans-submittable@users.noreply.github.com> Date: Tue, 8 Mar 2022 08:35:59 -0500 Subject: [PATCH] Keep inputs context uniform --- data/reusables/actions/workflow-dispatch-inputs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/reusables/actions/workflow-dispatch-inputs.md b/data/reusables/actions/workflow-dispatch-inputs.md index 632d91a654..6060e4ad50 100644 --- a/data/reusables/actions/workflow-dispatch-inputs.md +++ b/data/reusables/actions/workflow-dispatch-inputs.md @@ -31,7 +31,7 @@ on: jobs: print-tag: runs-on: ubuntu-latest - if: {% raw %} ${{ inputs.print_tags == 'true' }} {% endraw %} + if: {% raw %} ${{ github.event.inputs.print_tags == 'true' }} {% endraw %} steps: - name: Print the input tag to STDOUT run: echo {% raw %} The tag is ${{ github.event.inputs.tag }} {% endraw %}