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 4848 env :
4949 PR_URL : ${{ github.event.pull_request.html_url }}
5050 GH_TOKEN : ${{ secrets.GH_APPROVER_TOKEN }}
51+
52+ # --- TEMPORARY DEBUG JOB ---
53+ # This job will run unconditionally to dump the PR event context
54+ debug_pr_event :
55+ runs-on : ubuntu-latest
56+ steps :
57+ - name : Dump Pull Request Event Context
58+ run : |
59+ echo "--- Debugging PR Event Context ---"
60+ echo "PR User Login (github.event.pull_request.user.login): ${{ github.event.pull_request.user.login }}"
61+ echo "PR Head Ref (github.event.pull_request.head.ref): ${{ github.event.pull_request.head.ref }}"
62+ echo ""
63+ echo "--- Full Pull Request Event JSON (for more details) ---"
64+ echo "${{ toJson(github.event.pull_request) }}"
65+ echo "--- End Debugging ---"
You can’t perform that action at this time.
0 commit comments