From b7b49692af4a33d853d204813200e4fdaecbce93 Mon Sep 17 00:00:00 2001 From: ashumeiko Date: Fri, 21 Jun 2024 13:58:46 +0500 Subject: [PATCH] test --- .github/workflows/test2.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/.github/workflows/test2.yml b/.github/workflows/test2.yml index 8b3575d..8572bac 100644 --- a/.github/workflows/test2.yml +++ b/.github/workflows/test2.yml @@ -15,6 +15,34 @@ on: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: + dump_contexts_to_log: + runs-on: ubuntu-latest + steps: + - name: Dump GitHub context + env: + GITHUB_CONTEXT: ${{ toJson(github) }} + run: echo "$GITHUB_CONTEXT" + - name: Dump job context + env: + JOB_CONTEXT: ${{ toJson(job) }} + run: echo "$JOB_CONTEXT" + - name: Dump steps context + env: + STEPS_CONTEXT: ${{ toJson(steps) }} + run: echo "$STEPS_CONTEXT" + - name: Dump runner context + env: + RUNNER_CONTEXT: ${{ toJson(runner) }} + run: echo "$RUNNER_CONTEXT" + - name: Dump strategy context + env: + STRATEGY_CONTEXT: ${{ toJson(strategy) }} + run: echo "$STRATEGY_CONTEXT" + - name: Dump matrix context + env: + MATRIX_CONTEXT: ${{ toJson(matrix) }} + run: echo "$MATRIX_CONTEXT" + # This workflow contains a single job called "build" test2: # The type of runner that the job will run on