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

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