summaryrefslogtreecommitdiffstats
path: root/pkg/runner/testdata/inputs-via-env-context/action.yml
blob: 4ea270d4176e363662d9f662d90b00c2db784913 (plain)
1
2
3
4
5
6
7
8
inputs:
  test-env-input: {}
runs:
  using: composite
  steps:
  - run: |
      exit ${{ inputs.test-env-input == env.test-env-input && '0' || '1'}}
    shell: bash