diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e5c8ca0..bbde58f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -30,11 +30,16 @@ on: - debug - staging - production + number: + description: 'Some number' + required: false + type: number jobs: print-tag: runs-on: ubuntu-latest if: ${{ inputs.print_tags }} steps: + - run: echo "number is ${{ inputs.number }}" - name: Print the input tag to STDOUT run: echo "The tags are ${{ inputs.tags }}; env=${{ inputs.environment }}; logLevel=${{ inputs.logLevel }}; optional_boolean=${{ inputs.optional_boolean }}"