Qwen Code PR adds a GitHub polling adapter that uses notifications only as wake-up signals

OrbitZore · ghdev · 2026-07-24

Qwen Code adds a GitHub polling adapter built around notifications as wake-up signals

A PR for QwenLM/qwen-code #7632 introduces a new GitHub channel adapter that polls GitHub notifications and turns @mentions on issues and PRs into bot comments.

Core design

Why this architecture

The PR explains that GitHub notification timestamps and comment timestamps are decoupled, so updatedat can lag behind the triggering comment or be bumped by unrelated activity. The cursor-window approach is meant to avoid races where PUT /notifications is async and a bot reply updates the thread before the read marker takes effect.

The author also notes a known limitation: if notification delivery is delayed across a polling boundary, a later cursor advance can miss older comments, requiring a re-mention.

Original post →

More from coding & agent

coding & agent channel →