1# workflows 2 3GitHub Actions workflows. 4 5## debugging workflow runs 6 7to get the Claude Code summary/report from a workflow run: 8 9```bash 10# get the summary URL for a specific run 11# format: https://github.com/{owner}/{repo}/actions/runs/{run_id}/jobs/{job_id}/summary_raw 12 13# step 1: get the job ID from the run 14gh run view {run_id} --json jobs -q '.jobs[0].databaseId' 15 16# step 2: construct the URL 17# https://github.com/zzstoatzz/plyr.fm/actions/runs/{run_id}/jobs/{job_id}/summary_raw 18 19# example for run 20017464306: 20gh run view 20017464306 --json jobs -q '.jobs[0].databaseId' 21# returns: 44812821179 22# URL: https://github.com/zzstoatzz/plyr.fm/actions/runs/20017464306/jobs/44812821179/summary_raw 23``` 24 25the summary contains Claude's full reasoning, tool calls, and outputs - much more useful than grepping through logs.