File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -27,15 +27,16 @@ jobs:
2727 - name : Debug info
2828 # https://docs.github.com/en/actions/reference/security/secure-use#use-an-intermediate-environment-variable
2929 env :
30- GH_HEAD_REF : ${{ github.head_ref }}
30+ # `env:` values are printed to the log even without using them in `run:`
31+ GH_CONTEXT : ${{ toJson(github) }}
32+ GH_EVENT : ${{ toJson(github.event) }}
33+ GH_PULL_REQUEST : ${{ toJson(github.event.pull_request) }}
3134 run : |
3235 cat <<EOF
33- Scratch environment : ${{ vars.SCRATCH_ENV || '<none>' }}
36+ Working directory : $(pwd)
3437 Node version: $(node --version)
3538 NPM version: $(npm --version)
36- GitHub ref: ${{ github.ref }}
37- GitHub head ref: ${GH_HEAD_REF}
38- Working directory: $(pwd)
39+ Scratch environment: ${{ vars.SCRATCH_ENV || '<none>' }}
3940 EOF
4041
4142 - uses : dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
You can’t perform that action at this time.
0 commit comments