From 01e4a5527bd09da4ec513657d3428d374aeb2c98 Mon Sep 17 00:00:00 2001 From: a-masterov <72613290+a-masterov@users.noreply.github.com> Date: Thu, 5 Dec 2024 12:31:02 +0100 Subject: [PATCH] Update cet.yml --- .github/workflows/cet.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cet.yml b/.github/workflows/cet.yml index a4031ef..3b18b77 100644 --- a/.github/workflows/cet.yml +++ b/.github/workflows/cet.yml @@ -1,6 +1,12 @@ name: Test on: workflow_dispatch: # adds ability to run this manually + inputs: + run_s2: + description: Run Step2 + required: false + default: false + type: boolean defaults: run: shell: bash -euxo pipefail {0} @@ -13,6 +19,6 @@ jobs: run: exit 0 - name: step2 - if: false + if: ${{inputs.run_s2}} run: exit 1