github.com/nektos/act@v0.2.63/pkg/runner/testdata/uses-composite-with-inputs/action/action.yml (about)

     1  name: "action"
     2  description: "action"
     3  
     4  inputs:
     5    some:
     6      description: "some input"
     7      required: true
     8    other:
     9      description: "other input"
    10      default: "${{ inputs.some }}"
    11      required: false
    12  outputs:
    13    out:
    14      description: "some output"
    15      value: "output value"
    16  
    17  runs:
    18    using: "composite"
    19    steps:
    20      - run: |
    21          echo "action input=${{ inputs.some }}"
    22          [[ "${{ inputs.some == 'value' }}" = "true" ]] || exit 1
    23        shell: bash
    24      - run: |
    25          echo "ENV_VAR=$ENV_VAR"
    26          [[ "$ENV_VAR" = "value" ]] || exit 1
    27        shell: bash
    28        env:
    29          ENV_VAR: ${{ inputs.other }}