From 2b94bd97dcdf19a7efda6b71a771cc54039df769 Mon Sep 17 00:00:00 2001 From: max Date: Thu, 29 Jun 2023 14:55:17 +0700 Subject: [PATCH] Add .gitea/workflows/actions3.yaml --- .gitea/workflows/actions3.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitea/workflows/actions3.yaml diff --git a/.gitea/workflows/actions3.yaml b/.gitea/workflows/actions3.yaml new file mode 100644 index 0000000..db4a9c9 --- /dev/null +++ b/.gitea/workflows/actions3.yaml @@ -0,0 +1,19 @@ +name: Context testing +on: push + +jobs: + dump_contexts_to_log: + runs-on: ubuntu-latest + steps: + - name: Dump GitHub context + run: echo '${{ toJson(github) }}' + - name: Dump job context + run: echo '${{ toJson(job) }}' + - name: Dump steps context + run: echo '${{ toJson(steps) }}' + - name: Dump runner context + run: echo '${{ toJson(runner) }}' + - name: Dump strategy context + run: echo '${{ toJson(strategy) }}' + - name: Dump matrix context + run: echo '${{ toJson(matrix) }}'