Uh oh!
There was an error while loading. Please reload this page.
feat(cache): honor runner ignored outputs - #459
Merged
Conversation
This was referenced Jun 14, 2026
MemberAuthor
This was referenced Jun 14, 2026
wan9chiforce-pushed
the
infra-ignore-output-overlap
branch
from
June 14, 2026 16:20
ed8d3c6 to
f83d812Comparewan9chiforce-pushed
the
infra-ignore-output-overlap
branch
2 times, most recently
from
June 14, 2026 16:29
d843881 to
e1a8b45Comparewan9chiforce-pushed
the
infra-ignore-output-overlap
branch
from
June 14, 2026 22:17
e1a8b45 to
e713ae3Comparewan9chiforce-pushed
the
infra-ignore-output-overlap
branch
from
June 14, 2026 22:36
e713ae3 to
dcee0e6Comparewan9chiforce-pushed
the
infra-ignore-output-overlap
branch
from
June 14, 2026 22:41
dcee0e6 to
5d84636Comparewan9chiforce-pushed
the
auto-output-track
branch
2 times, most recently
from
June 14, 2026 22:49
4e772c4 to
fb09aa9Comparewan9chiforce-pushed
the
infra-ignore-output-overlap
branch
2 times, most recently
from
June 14, 2026 22:49
c47df41 to
02224e8Comparewan9chiforce-pushed
the
auto-output-track
branch
2 times, most recently
from
June 15, 2026 01:19
4e772c4 to
b300e23Comparewan9chiforce-pushed
the
infra-ignore-output-overlap
branch
from
June 15, 2026 01:19
02224e8 to
521bb20CompareCo-authored-by: GPT-5 Codex <codex@openai.com>
wan9chiforce-pushed
the
infra-ignore-output-overlap
branch
from
June 15, 2026 01:31
521bb20 to
2cc3dd0CompareUh oh!
There was an error while loading. Please reload this page.
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 freeto 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.

Motivation
Some tools read and rewrite sidecar files during execution. Those writes are not task outputs, but without an explicit ignore report they trigger the runner's read/write overlap protection and prevent otherwise cacheable tasks from being stored.
Scope
Add the
ignoreOutput(path)IPC request, expose it through the Rust and Node clients, record ignored output paths on the server, and exempt matching writes from the read/write overlap check. Add an e2e that uses an explicitoutput: ["dist/**"]archive so the PR proves overlap handling without depending on automatic output tracking.