Merge pull request #988 from ergebnis/dependabot/github_actions/codec… #6153
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
# https://docs.github.com/en/actions | |
name: "Context" | |
on: # yamllint disable-line rule:truthy | |
check_run: null | |
check_suite: null | |
issues: null | |
pull_request: null | |
pull_request_target: null | |
push: null | |
workflow_run: | |
types: | |
- "completed" | |
workflows: | |
- "Integrate" | |
jobs: | |
context: | |
name: "Context" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Dump env context" | |
run: "env|sort" | |
- name: "Hmm" | |
run: "echo ${GITHUB_JOB}" | |
- name: "Dump github context" | |
run: "echo \"$DATA\"" | |
env: | |
DATA: "${{ toJson(github) }}" | |
- name: "Dump job context" | |
run: "echo \"$DATA\"" | |
env: | |
DATA: "${{ toJson(job) }}" | |
- name: "Dump matrix context" | |
run: "echo \"$DATA\"" | |
env: | |
DATA: "${{ toJson(matrix) }}" | |
- name: "Dump runner context" | |
run: "echo \"$DATA\"" | |
env: | |
DATA: "${{ toJson(runner) }}" | |
- name: "Dump steps context" | |
run: "echo \"$DATA\"" | |
env: | |
DATA: "${{ toJson(steps) }}" | |
- name: "Dump strategy context" | |
run: "echo \"$DATA\"" | |
env: | |
DATA: "${{ toJson(strategy) }}" |