Add a debug workflow

Github actions only triggers the `status` event if the workflow is in the main branch. This can be removed later.
This commit is contained in:
Ashcon Partovi
2024-06-26 18:38:56 -07:00
committed by GitHub
parent 60ef13e079
commit 96e84b276b

11
.github/workflows/debug.yml vendored Normal file
View File

@@ -0,0 +1,11 @@
name: Debug
on: status
jobs:
debug:
runs-on: ubuntu-latest
steps:
- name: Debug
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
run: echo "$GITHUB_CONTEXT"