File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 2424 - main
2525
2626jobs :
27+ # --- TEMPORARY DEBUG JOB ---
28+ # This job will run unconditionally to dump the PR event context
29+ debug_pr_event :
30+ runs-on : ubuntu-latest
31+ steps :
32+ - name : Dump Pull Request Event Context
33+ run : |
34+ echo "--- Debugging PR Event Context ---"
35+ echo "PR User Login (github.event.pull_request.user.login): ${{ github.event.pull_request.user.login }}"
36+ echo "PR Head Ref (github.event.pull_request.head.ref): ${{ github.event.pull_request.head.ref }}"
37+ echo ""
38+ echo "--- Full Pull Request Event JSON (for more details) ---"
39+ echo "${{ toJson(github.event.pull_request) }}"
40+ echo "--- End Debugging ---"
41+
2742 approve-and-merge :
2843 runs-on : ubuntu-latest
2944 permissions :
You can’t perform that action at this time.
0 commit comments