Will this ever end? #17
Workflow file for this run
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 Merge Context | |
on: | |
pull_request: | |
push: | |
jobs: | |
contexts-1: | |
name: GitHub context | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: GitHub context | |
run: echo "${{ toJson(github) }}" || true | |
contexts-2: | |
name: Job context | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Job context | |
run: echo "${{ toJson(job) }}" || true | |
contexts-3: | |
name: Steps context | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Steps context | |
run: echo "${{ toJson(steps) }}" || true | |
contexts-4: | |
name: Runner context | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Runner context | |
run: echo "${{ toJson(runner) }}" || true | |
contexts-5: | |
name: Strategy context | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Strategy context | |
run: echo "${{ toJson(strategy) }}" || true |