From 1d3da4402d176678c2621bd3c9e179549369e714 Mon Sep 17 00:00:00 2001 From: Guillaume Betous Date: Wed, 19 Jan 2022 09:28:57 +0100 Subject: [PATCH] FIX boolean issue on manual tests See https://github.com/actions/runner/issues/1483 --- .github/workflows/manual.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/manual.yml b/.github/workflows/manual.yml index a88a923..1902cb0 100644 --- a/.github/workflows/manual.yml +++ b/.github/workflows/manual.yml @@ -19,6 +19,7 @@ jobs: name: manual test uses: gbetous-swir/GHActions-demo/.github/workflows/jobs.yml@main with: + # As GitHub Interface returns a string even on boolean type, lcast it to real boolean usernames: ${{ github.event.inputs.names }} - hello_job: ${{ github.event.inputs.hello }} - goodbye_job: ${{ github.event.inputs.goodbye }} + hello_job: ${{ github.event.inputs.hello == 'true' }} + goodbye_job: ${{ github.event.inputs.goodbye == 'true' }}