github.com/nektos/act@v0.2.63/pkg/runner/testdata/act-composite-env-test/action2/action.yml (about)

     1  name: action2
     2  description: actions2
     3  runs:
     4    using: composite
     5    steps:
     6    - name: env.COMPOSITE_OVERRIDE != '2'
     7      run: exit 1
     8      if: env.COMPOSITE_OVERRIDE != '2'
     9      shell: bash
    10    - name: env.COMPOSITE != '1'
    11      run: exit 1
    12      if: env.COMPOSITE != '1'
    13      shell: bash
    14    - name: env.JOB != '1'
    15      run: exit 1
    16      if: env.JOB != '1'
    17      shell: bash
    18    - name: env.GLOBAL != '1'
    19      run: exit 1
    20      if: env.GLOBAL != '1'
    21      shell: bash