4af9880b86b789549e3dafb0878a4fb21393a3d2
The loop that reads merged pull requests was guarded by len(pullRequests) > 0 at a point 600 lines before the Gitea wiring that writes to that map. The length was always zero, so the goroutine never started and a merged pull request could never complete its task. Live on the first submission this deployment made: PR #8 took a trusted comment and nothing moved. Moving the block below the wiring fixes the ordering and avoids the race that reading the map inside the tick would have introduced. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01CVbaKucEYBjMqVeUgJUsc1
Description
No description provided