Skip to content

docs: take notes on some basic events #12

docs: take notes on some basic events

docs: take notes on some basic events #12

Workflow file for this run

name: push
on:
push:
jobs:
foo:
name: push
runs-on: ubuntu-latest
steps:
- name: Event context info
run: |
cat <<EOF
github: ${{toJSON(github)}}
env: ${{toJSON(env)}}
vars: ${{toJSON(vars)}}
job: ${{toJSON(job)}}
steps: ${{toJSON(steps)}}
runner: ${{toJSON(runner)}}
secrets: ${{toJSON(secrets)}}
strategy: ${{toJSON(strategy)}}
matrix: ${{toJSON(matrix)}}
needs: ${{toJSON(needs)}}
inputs: ${{toJSON(inputs)}}
EOF