TestActions1/.gitea/workflows/actions3.yaml
max 5ac6f44e1c
All checks were successful
Context testing 3 / dump_contexts_to_log (push) Successful in 3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 10s
Context testing / dump_contexts_to_log (push) Successful in 46s
Update .gitea/workflows/actions3.yaml
2023-06-29 15:04:15 +07:00

20 lines
554 B
YAML

name: Context testing 3
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) }}'