diff --git a/.github/actions/print_vars/action.yml b/.github/actions/print_vars/action.yml new file mode 100644 index 0000000000..38145c393a --- /dev/null +++ b/.github/actions/print_vars/action.yml @@ -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) }}" diff --git a/.vscode/settings.json b/.vscode/settings.json index c53baa4630..547dc4c22e 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -22,5 +22,8 @@ }, "[html]": { "editor.defaultFormatter": "esbenp.prettier-vscode" + }, + "[yaml]": { + "editor.defaultFormatter": "redhat.vscode-yaml" } }