We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9c63d2 commit 81c7142Copy full SHA for 81c7142
.github/stdlib-workflows/reusable-tox/actions/post-src-checkout/action.yml
@@ -22,11 +22,11 @@ runs:
22
}}
23
- name: Log contexts
24
run: |
25
- echo github: ${{ github }}
26
- echo inputs: ${{ inputs }}
27
- echo job: ${{ job }}
28
- echo matrix: ${{ matrix }}
29
- echo runner: ${{ runner }}
+ echo github: ${{ toJSON(github) }}
+ echo inputs: ${{ toJSON(inputs) }}
+ echo job: ${{ toJSON(job) }}
+ echo matrix: ${{ toJSON(matrix) }}
+ echo runner: ${{ toJSON(runner) }}
30
shell: bash
31
32
...
0 commit comments