feat(github): add configurable floor for progress-comment edit cadence#759
Open
aparajon wants to merge 1 commit into
Open
feat(github): add configurable floor for progress-comment edit cadence#759aparajon wants to merge 1 commit into
aparajon wants to merge 1 commit into
Conversation
aparajon
force-pushed
the
armand/progress-comment-decay
branch
from
July 18, 2026 21:42
3efffda to
8e1ab8f
Compare
aparajon
force-pushed
the
armand/progress-comment-min-interval
branch
from
July 18, 2026 21:42
370766e to
4394bda
Compare
aparajon
force-pushed
the
armand/progress-comment-decay
branch
from
July 18, 2026 23:14
8e1ab8f to
0710f5b
Compare
aparajon
force-pushed
the
armand/progress-comment-min-interval
branch
from
July 18, 2026 23:14
4394bda to
a6ac3f4
Compare
Add progress_comment_min_edit_interval server config: a Go duration string that floors the built-in age-decayed progress-comment edit cadence. Operators can set it during a GitHub rate-limit incident (or permanently on servers hosting many concurrent long-running applies) to bound EditComment traffic without a code change. State changes still publish immediately; the floor only spaces out progress-percentage edits. Empty or unset means no floor, and an invalid value is rejected at config validation. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
aparajon
force-pushed
the
armand/progress-comment-decay
branch
from
July 19, 2026 00:04
0710f5b to
389522a
Compare
aparajon
force-pushed
the
armand/progress-comment-min-interval
branch
from
July 19, 2026 00:06
a6ac3f4 to
b436d45
Compare
aparajon
marked this pull request as ready for review
July 20, 2026 02:05
aparajon
requested review from
Kiran01bm,
eeSeeGee,
jayjanssen and
morgo
as code owners
July 20, 2026 02:05
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why this matters
The built-in edit cadence is a fixed policy. During a GitHub rate-limit incident — or on a server hosting many concurrent long-running applies — operators need one valve that slows every apply's progress-comment traffic at once, without a code change or redeploy of new logic.
What it does
Adds a server config setting that floors the built-in age-decayed cadence:
docs/configuration.md; users needing high-resolution progress use the CLI, which polls the server directly and is unaffected.Stacked on #758.
🤖 Generated with Claude Code