Compare commits

...

7 commits

Author SHA1 Message Date
21d401c5a0
dump inputs context
All checks were successful
/ dump (push) Successful in 8s
2024-01-22 06:30:21 +01:00
c46a312bb9
dump needs context 2024-01-22 06:30:02 +01:00
1b4e80ee84
dump matrix context 2024-01-22 06:29:46 +01:00
edd1afa412
dump strategy context 2024-01-22 06:29:33 +01:00
fe85f5b390
dump secrets context 2024-01-22 06:29:19 +01:00
ec58648d40
dump runner context 2024-01-22 06:29:04 +01:00
be4c76cbc0
dump steps context 2024-01-22 06:28:53 +01:00

View file

@ -24,3 +24,31 @@ jobs:
- name: jobs
shell: bash
run: echo "${{ toJSON(jobs) }}"
- name: steps
shell: bash
run: echo "${{ toJSON(steps) }}"
- name: runner
shell: bash
run: echo "${{ toJSON(runner) }}"
- name: secrets
shell: bash
run: echo "${{ toJSON(secrets) }}"
- name: strategy
shell: bash
run: echo "${{ toJSON(strategy) }}"
- name: matrix
shell: bash
run: echo "${{ toJSON(matrix) }}"
- name: needs
shell: bash
run: echo "${{ toJSON(needs) }}"
- name: inputs
shell: bash
run: echo "${{ toJSON(inputs) }}"