Test Outer Empty String Input #20
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test Outer Empty String Input | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| input-string: | |
| type: string | |
| default: default-value | |
| required: true | |
| description: | | |
| input-string to test if-condition in step-level | |
| jobs: | |
| run-job-with-input: | |
| uses: IndritFejza/test-gha/.github/workflows/deploy-inner-test.yaml@main | |
| with: | |
| input-string: ${{inputs.input-string}} | |
| permissions: | |
| contents: read |