Last active
July 4, 2024 01:30
-
-
Save kaznak/d2d62a67947f4b76fb45527b4e0fa5e7 to your computer and use it in GitHub Desktop.
A reusable workflow that dumps context values
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dump Context Values | |
on: | |
workflow_dispatch: | |
workflow_call: | |
jobs: | |
dump_contexts: | |
name: Dump Context Values | |
runs-on: ubuntu-22.04 | |
steps: | |
- run: env | |
- name: toJSON(inputs) | |
run: echo '${{ toJSON(inputs) }}' | |
- name: toJSON(github) | |
run: echo '${{ toJSON(github) }}' | |
- name: toJSON(env) | |
run: echo '${{ toJSON(env) }}' | |
- name: toJSON(vars) | |
run: echo '${{ toJSON(vars) }}' | |
- name: toJSON(secrets) | |
run: echo '${{ toJSON(secrets) }}' | |
- name: toJSON(job) | |
run: echo '${{ toJSON(job) }}' | |
- name: toJSON(steps) | |
run: echo '${{ toJSON(steps) }}' | |
- name: toJSON(runner) | |
run: echo '${{ toJSON(runner) }}' | |
- name: toJSON(strategy) | |
run: echo '${{ toJSON(strategy) }}' | |
- name: toJSON(matrix) | |
run: echo '${{ toJSON(matrix) }}' | |
- name: toJSON(needs) | |
run: echo '${{ toJSON(needs) }}' | |
- run: gh version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment