-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
869 dump gha vars at start of each run for debugging (#899)
* print vars workflow * convert to action * make workflows use action * lint * restructure action
- Loading branch information
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: 'Print Vars' | ||
description: 'Prints github varibles' | ||
runs: | ||
using: 'composite' | ||
steps: | ||
- name: github context | ||
shell: bash | ||
run: echo "${{ toJson(github) }}" | ||
- name: env context | ||
shell: bash | ||
run: echo "${{ toJson(env) }}" | ||
- name: vars context | ||
shell: bash | ||
run: echo "${{ toJson(vars) }}" | ||
- name: job context | ||
shell: bash | ||
run: echo "${{ toJson(job) }}" | ||
- name: steps context | ||
shell: bash | ||
run: echo "${{ toJson(steps) }}" | ||
- name: runner context | ||
shell: bash | ||
run: echo "${{ toJson(runner) }}" | ||
- name: secrets context | ||
shell: bash | ||
run: echo "${{ toJson(secrets) }}" | ||
- name: strategy context | ||
shell: bash | ||
run: echo "${{ toJson(strategy) }}" | ||
- name: matrix context | ||
shell: bash | ||
run: echo "${{ toJson(matrix) }}" | ||
- name: needs context | ||
shell: bash | ||
run: echo "${{ toJson(needs) }}" | ||
- name: inputs context | ||
shell: bash | ||
run: echo "${{ toJson(inputs) }}" |
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