Skip to content

Commit

Permalink
debug: Add debug workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyparrish committed Nov 5, 2024
1 parent a9f7a03 commit 253c0db
Show file tree
Hide file tree
Showing 8 changed files with 224 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/debug-call.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Workflow Debug (Call)

on:
workflow_call:
inputs:
ref:
description: "The ref to build and test."
type: string
required: True

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
22 changes: 22 additions & 0 deletions .github/workflows/debug-caller.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Workflow Debug (Caller, Push/Dispatch)

on:
push:
branches:
- main
workflow_dispatch:
inputs:
ref:
description: "The ref to build and test."
type: string
required: True

defaults:
run:
shell: bash

jobs:
debug:
uses: ./.github/workflows/debug-call.yaml
with:
ref: foo
32 changes: 32 additions & 0 deletions .github/workflows/debug-dispatch.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Workflow Debug (Dispatch)

on:
workflow_dispatch:
inputs:
ref:
description: "The ref to build and test."
type: string
required: True

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
24 changes: 24 additions & 0 deletions .github/workflows/debug-pr-target.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Workflow Debug (PR Target)

on:
pull_request_target:
types: [opened, synchronize, reopened]

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
28 changes: 28 additions & 0 deletions .github/workflows/debug-pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Workflow Debug (PR)

on:
pull_request:
types: [opened, synchronize, reopened]

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
29 changes: 29 additions & 0 deletions .github/workflows/debug-push.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
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
28 changes: 28 additions & 0 deletions .github/workflows/debug-release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Workflow Debug (Release)

on:
release:
types: [created]

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
29 changes: 29 additions & 0 deletions .github/workflows/debug-schedule.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Workflow Debug (Schedule)

on:
schedule:
# Run every 10 minutes
- cron: '*/10 * * * *'

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

0 comments on commit 253c0db

Please sign in to comment.