Skip to content

Commit

Permalink
ci: dump contexts on PR merge (#1620)
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts authored Nov 20, 2023
1 parent 5d33fa5 commit 76ece27
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,25 @@ on:
workflow_dispatch:

jobs:
contexts:
name: Dump Contexts
runs-on: ubuntu-22.04
steps:
- name: GitHub context
run: echo "${{ toJson(github) }}"

- name: Job context
run: echo "${{ toJson(job) }}"

- name: Steps context
run: echo "${{ toJson(steps) }}"

- name: Runner context
run: echo "${{ toJson(runner) }}"

- name: Strategy context
run: echo "${{ toJson(strategy) }}"

semver:
name: Semantic Version
outputs:
Expand Down

0 comments on commit 76ece27

Please sign in to comment.