Skip to content

Commit

Permalink
FIX boolean issue on manual tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gbetous-swir committed Jan 19, 2022
1 parent 1e186c8 commit 1d3da44
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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' }}

0 comments on commit 1d3da44

Please sign in to comment.