Skip to content

debug: Add debug workflow #4

debug: Add debug workflow

debug: Add debug workflow #4

Workflow file for this run

name: Workflow Debug (Push)
on:
push:
branches:
- main
defaults:
run:
shell: bash
jobs:
debug:
runs-on: ubuntu-latest
steps:
- run: |
echo "github.ref: ${{ github.ref }}"
echo "github.event_name: ${{ github.event_name }}"
echo ""
echo "github.event.inputs.ref: ${{ github.event.inputs.ref }}"
echo "inputs.ref: ${{ inputs.ref }}"
echo ""
echo "github.event.pull_request_target.merge_commit_sha: ${{ github.event.pull_request_target.merge_commit_sha }}"
echo "github.event.pull_request.merge_commit_sha: ${{ github.event.pull_request.merge_commit_sha }}"
echo "github.event.push.head: ${{ github.event.push.head }}"
echo ""
cat <<EOF
github.event: ${{ toJSON(github.event) }}
EOF