Skip to content

chore: refresh org SBOM inventory - #1678

Open
opencode-agent[bot] wants to merge 96 commits into
mainfrom
automation/sbom-inventory
Open

chore: refresh org SBOM inventory#1678
opencode-agent[bot] wants to merge 96 commits into
mainfrom
automation/sbom-inventory

Conversation

@opencode-agent

@opencode-agent opencode-agent Bot commented Sep 2, 2026

Copy link
Copy Markdown
Contributor

Automated central SBOM inventory refresh for live non-fork repositories. Review reciprocal, restricted, and NOASSERTION license evidence in docs/sbom/inventory.md against the product's actual distribution and hosted-service model.


Devin Review

@opencode-agent
opencode-agent Bot requested a review from seonghobae as a code owner September 2, 2026 04:27

@devin-ai-integration devin-ai-integration Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note

This report is out of date. Scroll down for Devin Review's latest report on this PR.

Devin Review found 3 potential issues.

⚠️ 3 issues in files not directly in the diff

⚠️ Partial inventory appears complete

With 34 of 63 SBOM fetches returning 404, repo_count reports all 63 while component totals cover only 29. The inventory presents partial organization evidence as complete.


⚠️ Permitted licenses trigger violations

For MPL-2.0 components without another prohibited license, flagged reports at least 137 policy violations. Governance therefore escalates expressly permitted dependencies.


⚠️ Permissive alternatives trigger violations

When an SPDX expression offers a permissive alternative, flagged rejects it because another alternative is copyleft. Seven selectable permissive dependencies become policy violations.

Devin Review

@seonghobae seonghobae added priority: medium Normal-priority or P2 work status: needs-review Open pull request requiring current-head review or checks type: maintenance Maintenance, build, dependency, or operational upkeep labels Sep 2, 2026 — with ChatGPT Codex Connector

@devin-ai-integration devin-ai-integration Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note

This report is out of date. Scroll down for Devin Review's latest report on this PR.

Devin Review found 0 new potential issues.

Devin Review

@devin-ai-integration devin-ai-integration Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note

This report is out of date. Scroll down for Devin Review's latest report on this PR.

Devin Review found 0 new potential issues.

Devin Review

@devin-ai-integration devin-ai-integration Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Devin Review found 1 new potential issue.

⚠️ 1 issue in files not directly in the diff

⚠️ Restricted licenses escape policy review

Seven LicenseRef-NVIDIA-Proprietary components are marked unflagged. Unknown and non-standard licenses also disappear from the commercial-permissive policy review.

Devin Review

cwl-sbom-inventory[bot] and others added 8 commits September 6, 2026 06:17
…retry (#1953)

* fix(strix): name the sandbox bootstrap failure and give it a bounded retry

When Strix's sandbox container comes up without its Caido proxy, Strix fails
its fixed ten loginAsGuest attempts and exits; the gate then printed
"STRIX_PROVIDER_UNAVAILABLE: contextual-orchestrator/orchestrator/free
exhausted" -- blaming a component the run never called. The gate already
recognises this class (is_caido_bootstrap_timing_error) and documents a
same-model retry for it, but that retry draws on
STRIX_TRANSIENT_RETRY_PER_MODEL, which is 0 in production because the
gateway owns model failover, so it has never run.

- STRIX_SANDBOX_BOOTSTRAP_RETRIES (default 1): once the per-model budget is
  spent, a sandbox-class failure may extend the attempt loop by one, up to
  this budget. The budget is charged in the same branch that grants the
  attempt: an adversarial verification pass (three independent lenses)
  showed that the first draft, which charged it in the retry-reason elif
  chain behind the gateway classes, let a log matching both the sandbox
  class and a rate-limit or connection class extend the loop on every
  iteration without charging, with nothing in production bounding it but
  GitHub's six-hour default. Gateway failures at per-model budget 0 still
  get no retry.
- run_current_target_scan: for the sandbox class the verdict is
  "STRIX_PROVIDER_UNAVAILABLE: STRIX_SANDBOX_UNAVAILABLE: the last Strix
  attempt ended in the sandbox bootstrap (...) after N sandbox-specific
  same-model retries (budget B); this verdict names Strix's sandbox, not the
  LLM gateway." N is the observed count (SANDBOX_RETRIES_USED). The leading
  token is unchanged, so strix.yml's finding-free classification and its
  tests are untouched; the second token lets the review census split
  sandbox outages from gateway ones.

Evidence: argos Strix run 34013128112 (2026-09-06): sidecar preflight ready
4 / deferred 4, then "Docker image ready", loginAsGuest failed after 10
attempts on 127.0.0.1:48080, Strix exit after 240 s, one attempt, the
gateway verdict; a second artifact (9983313170) identical; two of the six
most recent strix-reports artifacts are this class.

Tests (tests/test_strix_caido_bootstrap_timing_retry.py, production
functions extracted, run_strix_once stubbed with a self-capping stub):
sandbox retry at per-model 0 (2 attempts), bounded (budget 2 -> 3, 0 -> 1),
gateway retries not widened, mixed sandbox+rate-limit log stays bounded,
sandbox budget on top of per-model (1+1 -> 3), verdict names the sandbox with
the observed count, gateway verdict unchanged. Negative controls: three fail
on main's gate; the mixed-log test fails on the first draft (runaway caught
by the stub cap). Gate: 2927 passed, 1 skipped, coverage 100% (0 missed),
interrogate 100%.

Refs #1948, #1935.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>

* fix(strix): report only sandbox retries that actually ran

Lane peer 1's verification note on #1953: the reporting variable was set
where the extra attempt is granted, but a granted attempt can still be
vetoed by the timeout / transient checks that follow, so a log carrying both
the sandbox and a timeout signature was charged, not retried, and reported
as "after 1 sandbox-specific same-model retries". SANDBOX_RETRIES_USED is now
assigned only when the retry really proceeds (just before the attempt
counter advances); the budget charge stays in the grant branch, so the
bound is unchanged. The constant's comment notes that a sandbox retry waits
the same inter-attempt backoff as any other retry -- a pause between
container attempts, not an inference deadline.

Test: sandbox+timeout log -> 1 call, reported 0; plain sandbox log -> 2
calls, reported 1 (the harness echoes SANDBOX_RETRIES_USED). Module 14/14;
negative control on main's gate 7 failed / 7 passed. Gate: 2928 passed,
1 skipped, coverage 100% (0 missed), interrogate 100%.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>

---------

Co-authored-by: Claude Fable 5.1 <noreply@anthropic.com>
…ission (#1958)

opencode-review-dispatch.yml carried its concurrency group only on the long
opencode-review-target job. A job-level group is never evaluated while the
whole run waits behind the organization job ceiling, so two dispatches for one
pull request each queued for hours and each was allocated a runner before the
older one could be discarded.

Measured on 2026-09-06: of the five dispatch runs that passed
validate-pr-metadata, four were then rejected by the privileged metadata check
because the head had moved while they queued (34002473295, 34010256951,
34015973300, 34016922761), every one of them after coverage-source-tree and
coverage-evidence had already run. The privileged check behaved correctly; the
cost is that a runner slot is spent discovering that the review's subject no
longer exists.

Add the workflow-level group keyed by the dispatched pull request, matching
codeql-scan-dispatch.yml's workflow-level group and the rationale recorded in
strix.yml, noema-review.yml and opencode-review.yml. The job-level group stays.
No behaviour changes between two runs that are both executing -- the job-level
group already cancels there; what changes is that a superseded run is now
cancelled while queued.

Co-authored-by: Seongho Bae <seongho.iopsy@gmail.com>
Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
…of banning them (#1957)

#1949's account rule sets aside an account's remaining candidates after two
consecutive 429s. When a walk runs out of candidates it is willing to probe it
ENDS -- with probe budget in hand and the readiness target unmet -- and the
stage fails closed; because deferral needs one ready route (#1947), nothing is
served either.

Sixteen sidecar artifacts were collected on 2026-09-06 across .github, argos,
bandscope and naruon; fourteen ran the merged rule (argos 34013128112 and
bandscope 34013146167 still carry the pre-#1949 report shape). Those fourteen
fall into three classes, not two: eight boots at probed/skipped/ready 16/4/5-6
spend the whole budget in the first pass and are unchanged by this commit; ONE
(argos 34014143870, 06:56Z) reads 12/12/3 -- it served, yet exhausted its
candidates under target with four probes unspent; five read 6/18/0 and failed
closed. The sixth ready route in the healthy class (llama-3.2-11b on the
second NVIDIA key, catalog position 17, ready in exactly those eight
artifacts) is reached only because four OpenRouter probes were set aside --
the rule's designed benefit, which this commit keeps.

.github run 34016207820's six probes were refused 429 between 07:49:35.111Z
and 07:49:35.767Z; because the walk round-robins three accounts, "two
consecutive 429s" on one account is two requests about 310 ms apart
(nvidia_nim at .111 and .422). keyverse#143's 08:20Z noema repeated the shape
in a second repository. A refusal is not a verdict on the account: run
34016093772 was inside its own preflight during that burst and its
llama-3.2-11b probes on the same two NVIDIA keys answered ready at 07:50:58.7Z
and 07:50:59.0Z, 84 s after those keys refused.

Not claimed: that the ten unspent probes would have found a ready route inside
the burst. No artifact answers it, which is why this also records
retry_after_s. The change rests on the structural defect alone.

A set-aside candidate is now postponed to the end of the walk; once the first
pass ends under target with budget left, the postponed candidates are probed
in catalog order until the sixteen-probe budget is spent. Both passes share
one stop condition, so probes per stage stay <= 16, and exhaustion uses a
dedicated sentinel so a None candidate cannot truncate the walk. The second
pass never draws on the shared escalation budget (#1458): a postponed
candidate answering "budget too small" is rejected as
escalation_reserved_for_first_pass, because otherwise candidates the previous
design never probed take escalations from the priced stage that had them, and
a measured two-stage run stops serving a route it used to serve.

_safe_retry_after_seconds records a refused probe's Retry-After as
retry_after_s when it is whole delta-seconds in range. It gates on isdecimal,
not isdigit: the header is provider-controlled, "²".isdigit() is True
while int() on it raises, and this runs inside the probe walk's exception
handler whose callers catch only ReviewPreflightError -- so a ValueError there
would kill the boot before any evidence file is written. No code waits on the
value (ADR-0003).

Cost, stated in the ADR and PR body against the 60-job ceiling work: about
120 ms per refused probe, up to 10 x 90 s ~= 15 minutes when the postponed
tail is silent (gemma-4-31b answered TimeoutError in 15 of the 19 probes that
reached it), and 8 -> 24 requests on the two-stage auto path, where the priced
stage doubles from 4 probes to 8. All inside the probe budget ADR-0029 bounds.

Report: postponed_probed_count added, skipped_count now means "postponed and
never reached". ADR-0029 amended, and its two superseded sentences marked in
place.

Verified by a three-lens adversarial refutation before push (control flow,
evidence and design, test fidelity): all three returned refuted=true with 20
findings, each reproduced against the artifacts before acting. The blocker
above, the escalation-budget regression, the miscounted evidence table, the
false "healthy-minute walk is unchanged" claim, the 310 ms spacing, the
sibling run's real relationship to the burst and the superseded ADR sentences
all come from that pass.

Gate on this tree: 2945 passed, 1 skipped, 21 subtests; coverage 100% (0
missed); interrogate 100%. Negative control on origin/main's launcher with
this test file: 8 failed, 93 passed.

Refs #1948, #1949.

Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
…#1959)

A completed scan (run.json completed, SARIF 0 results, attempt exit 0)
was failed closed as STRIX_PROVIDER_UNAVAILABLE on .github#1689 run
34013778497 because three `strix.core.execution: transient model/provider
error for <agent>; replaying turn (attempt n/m, backoff Ns): …` WARNING
lines survived sanitize_known_strix_report_warnings and tripped the
report WARNING scan. strix-agent 1.5.3 emits that line only inside its
bounded transient-retry branch (strix/core/execution.py:763), immediately
before the replay runs; an exhausted retry logs `agent run failed for …;
marking failed` at ERROR with a traceback and exits non-zero, and both of
those still fail the gate.

Two tests cover the production argument shape, where the reports root is
passed and has_strix_report_failure_signal narrows to the newest run
directory via latest_strix_report_dir, so the sanitized tree and the
scanned tree are demonstrably the same one. The CHANGELOG records one
side effect: a provider 503 body that appears only inside a retry line's
exception repr is removed with that line, which can make the report-only
branch of is_model_retryable_error read an outage as non-retryable. The
direction is fail-closed and the contextual-orchestrator verdict branch
answers first, so no path changes outcome today.

Coupled to the strix-agent 1.5.3 execution.py:763 message format, like the
two existing alternatives — re-verify on every strix-agent bump.

Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
…#1960)

`opencode-review-dispatch.yml`'s `emit_strix_provider_failure_finding`
rendered one fixed finding for every `STRIX_PROVIDER_UNAVAILABLE` line, whose
Root cause read "The contextual-orchestrator gateway or its discovered
provider pool was unavailable for this run".

#1953 had just given the Strix sandbox bootstrap failure its own second
verdict token, `STRIX_SANDBOX_UNAVAILABLE`, precisely because that attribution
is wrong for it: the sandbox container never reaches its Caido proxy, so the
run dies before the gateway serves anything. This consumer re-applied the
wrong attribution one step downstream, into the review findings and the
failure census -- the misattribution #1953 fixed in the gate, surviving in the
reader.

The emitter now branches on the second token. A sandbox verdict gets a finding
that names Strix's sandbox, states that the verdict does not name the gateway,
and tells the reader not to change gateway or provider configuration on its
strength. A `STRIX_PROVIDER_UNAVAILABLE` line without the token keeps its
existing four lines verbatim, so the gateway class has no regression surface.

No test covered this finding text at all before ("gateway or its discovered
provider pool" and "provider availability blocked" both matched nothing under
tests/). tests/test_opencode_dispatch_strix_sandbox_finding.py runs the
production emitter, extracted from the published run block with the existing
_extract_run_block harness, and pins three directions: the sandbox token, a
gateway failure without it, and evidence carrying no provider-unavailable
signal at all.

Editing the workflow moves its blob, so REVIEW_DISPATCH_BLOB_SHA in
tests/test_pr_review_autofix_nvidia_nim_contract.py is recomputed to
694c04b with git hash-object (lane peer 1
flagged this pin in advance).

Gate on this tree: 2931 passed, 1 skipped, 21 subtests; coverage 100% (0
missed); interrogate 100%. Negative control on origin/main's workflow with
this test file: 1 failed, 2 passed -- only the sandbox direction fails there.

Refs #1953, #1935.

Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
cwl-sbom-inventory[bot] and others added 20 commits September 6, 2026 14:41
)

The contract asserted that expressions appear in the concurrency block, which
the block's own documentation satisfies while the key says something else. Slice
to the group's value with comments stripped so the assertion tests the key.

Author: separate session. Verified independently: mutant controls 7/7 caught on
the branch, 7/7 missed on main, adversarial helper inputs leak no comments.

Merger verification (this session): head matched the verified SHA exactly, 0
behind main, merge tree identical to the branch tree, tests-only (2 files, no
path outside tests/). Own discriminating control -- collapse the group key to
the repository alone while moving the expressions into the comment beside it:
main 58 passed (misses it), branch 1 failed (catches it). Full gate on the merge
tree: 2958 passed, 1 skipped, coverage 100%, interrogate 100%.

Merged under the standing chicken-and-egg authorization: the required contexts
CodeQL compatibility analysis (actions)/(python) cannot be produced for a
code-touching pull request in this repository -- codeql-scan-dispatch.yml has
never succeeded (0 of 1931) because its actor allowlist admits no identity that
dispatches it. See #1929.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
#1964)

Move the concurrency group from job level to workflow level in both agent-mention
dispatch workflows so a superseded mention is coalesced while it is still queued,
instead of holding its queue slot until a runner frees up.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
…ck (#1975)

The helper sliced from `permissions:`, so it raised IndexError on the two
workflows that declare permissions first, and it returned a folded key's raw
newlines rather than the value YAML produces. Nine of twenty-nine
workflow-level keys are folded, including every required review workflow.

Author and verifier were separate sessions. Merger verification (this session,
independent runs): head matched GitHub exactly, 0 behind main, merge tree
identical to the branch tree, tests-only. Exact-match against a yaml oracle
across every workflow: 29 match, 0 mismatch, 0 exception. Seven adversarial
inputs pass, three of them designed here rather than reused -- a comment
quoting `group:` before the real key, a job-level concurrency block appearing
first in the file, and literal `|`/`|-` scalars, which are refused rather
than silently folded into a value YAML never produces. Two-way control on the
live hole: flipping noema-review.yml's cancel-in-progress to false behind a
comment passes on main (2961) and fails here. pr-review-autofix.yml's
deliberate cancel-in-progress: false is preserved. Gate: 2964 passed, 1
skipped, coverage 100%, interrogate 100%.

Bypass basis stated plainly: this change is tests-only and does not itself
unblock anything, so it does not meet the narrower 'the PR's own diff edits
review-pipeline files' reading recorded in
docs/product-technical-gap-baseline.md. It is merged under this session's
standing instruction to fix the queue, which names verifying
`cancel-in-progress: true` as part of that work. The required CodeQL contexts
remain unreachable for any code-touching PR here (#1929).

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
…ot materialize (#1973)

Materializing the PR merge tree is a precondition of coverage-source-tree, so a
conflicting head can only produce a failed dispatch. The guard returns before
review_dispatch_admitted, preserving the bounded admission budget for a PR a
review could actually finish. UNKNOWN is deliberately not blocked.

Authored, verified and merged by three separate sessions.

Merger verification, my own runs: head matched GitHub, 0 behind main, merge tree
identical to the branch tree. Against current main the diff is 2 files, 206
insertions, 0 deletions; the production change is 29 added lines and nothing
removed. The guard sits at line 3691 and review_dispatch_admitted at 3706, so
the budget is preserved; 6 call sites handle the new return value. Negative
control, removing only the 15 guard lines: exactly 2 tests fail --
test_review_dispatch_skips_a_head_whose_merge_tree_cannot_materialize and
test_review_dispatch_reads_the_rest_merge_state_not_only_graphql -- asserting
merge_conflict against a received dispatched. Gate: 2968 passed, 1 skipped,
coverage 100% (13196 statements, 0 missed), interrogate 100%.

The cited measurement was corrected before merge. It read '20 dispatches across
80.5 hours'; two sessions independently recounted .github#1529 as 27 dispatches
across 100.8 hours with zero successes (20 cancelled, 7 failed). The original
figure came from a run window that silently truncated before the pull request
existed. The comment now carries the corrected numbers and the window.

Authorization is this session's standing instruction to clear the queue, which
lives outside this repository's text -- as docs/product-technical-gap-baseline.md
itself records after a 2026-09-01 correction, and that file is annotated '(not
merge authorization)' at every entry point. Corroborating rather than
authorizing: this PR's own diff edits scripts/ci/ review-pipeline code, so it
cannot validate itself across the pull_request_target trust boundary, which is
the conservative condition that document records one earlier pass imposing on
itself. On this head all 12 required contexts are unsatisfiable: 9 never
reported, 3 queued, 0 passing.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
…fails (#1979)

strix.yml's workflow-level cancel-in-progress was guarded by nothing: its own
test asserted the string as a substring, and the list in
test_required_pull_request_workflows_cancel_superseded_runs did not include it.

Authored and verified by separate sessions. Merger verification, my own runs:
head agreed across three paths (local ref, ls-remote, PR head) after the author
hit a push/PR-creation mismatch on this branch; 0 behind main; merge tree
identical to the branch tree; 13 files, all under tests/. Assertion forms: 24
helper calls, 4 line-anchored regexes, 19 assertions replaced.

Two-way control, comment out strix.yml's flag and set it false: main reports
2968 passed and does not catch it; this branch fails 2 tests. Gate on the branch
tree: 2968 passed, 1 skipped, coverage 100% (13196 statements, 0 missed),
interrogate 100%.

Four workflows are deliberately left uncontracted because no test states their
intended value, and writing one would invent policy. One of them,
scheduled-security-scan.yml, does produce the required context 'Detect CodeQL
languages' -- which strengthens rather than weakens that choice: its
cancel-in-progress: true with a github.ref-shared group is what starved it to
228 cancellations and 0 completions over 2026-09-01..09-05, so the correct value
is an open policy question on #1800, not a contract to fix here.

Authorization is this session's standing instruction to clear the queue, which
lives outside this repository's text. Corroborating, not authorizing: on this
head none of the 12 required contexts can pass -- the CodeQL pair is
unreachable while codeql-scan-dispatch has never succeeded (#1929).

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
…an workflows (#1980)

python-security.yml and sast-semgrep.yml had only the presence of
cancel-in-progress asserted, so flipping it to false passed the whole suite.
This pins the value.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
…review runs (#1983)

`active_review_run_refs` matched a workflow run's `name` exactly against the
review workflow aliases. But eight workflows in this repository define
`run-name:`, and that set contains every workflow whose runs this matcher looks
for -- `opencode-review.yml` ("Required OpenCode Review"),
`opencode-review-dispatch.yml` ("OpenCode Review Dispatch") and `strix.yml`
("Strix Security Scan"). For such a workflow GitHub reports the *rendered* run
name in `name` -- the same string as `display_title`, e.g.

    OpenCode Review Dispatch #834e748ee6...

Sampled 2026-09-07: 100 of 100 opencode-review-dispatch runs carry that form
and none carries the bare workflow name. So the exact match dropped every
production dispatch run at this line, before the `event == "repository_dispatch"`
branch immediately below that exists to read them. Two consequences:

  * `already_running` never suppressed a same-head repeat. .github#1529 took 27
    dispatches on one unchanged head over 100.8 hours; each new run's creation
    preceded the previous run's cancellation by about three seconds, so the
    previous run was demonstrably still active when the check ran and did not
    see it.
  * `stale` never populated, so older-head central runs were never cancelled.

A first count of the live queue said "20 duplicates of 45 active runs" and was
wrong: it grouped by repository and PR without the workflow, so runs of
different dispatch workflows on one PR were counted as duplicates of each other.
Regrouped by (workflow, repository, PR):

    active repository_dispatch runs, queued + in_progress   33
      codeql-scan-dispatch.yml      25 runs / 12 keys / 13 same-head duplicates
      opencode-review-dispatch.yml   5 runs /  5 keys /  0 duplicates
      pr-review-autofix.yml          3 runs /  3 keys /  0 duplicates

So the workflows this matcher governs show no live duplication at this instant.
The harm this fix addresses is the historical chain on .github#1529 and a
suppression that has never once fired, not a backlog visible right now. The 13
duplicates all belong to CodeQL Scan Dispatch, which this matcher does not
govern; that workflow also defines `run-name:`, which makes it a separate lead
rather than evidence for this change. Reviving stale cancellation is separately
safe: of 163 non-terminal central runs, 49 are review or dispatch
kind and 4 become cancellable, all of them subjects that no longer exist (3
closed or merged PRs, 1 moved head).

The fix is confined to the run comparison. `OPENCODE_WORKFLOW_NAMES` is
unchanged, because its other consumer compares a *workflow* object's name,
which is genuinely bare. `active_review_run_refs` has exactly two call sites,
OpenCode's and Strix's, so both are fixed here; the Strix side is pinned by its
own test so a later narrowing to the OpenCode aliases cannot silently reopen
half of it.

This is one instance of a class, and the file already contains the stable form.
`run.name` is compared as an identifier at four places -- `:1250`, `:3198`,
`:3254` (this one) and `:3783` -- while `:3060` keys on
`run.get("workflow_id") or run.get("path") or run.get("name")`, which cannot be
rewritten by a `run-name:`. `:1250` in particular feeds the REST fallback's
workflow-level policy boundary and would see a rendered title where it expects a
workflow name. Fixing the whole class means moving the callers from display
names to paths, which also touches how `dispatch_title_prefixes` is built, so it
is deliberately left out of this change; .github#1941 is the same root seen from
the `display_title` side. Recorded here so the next reader does not rediscover
it as a fifth instance.

Note the new behaviour this enables: while a same-head central run is active,
a repeat is now suppressed. A run that never terminates would therefore hold
the PR, where before the check simply never fired.

The existing fixture sets a bare `name` beside a rendered `display_title`, a
payload GitHub never emits for a `run-name:` workflow, which is why 100 percent
line coverage of that branch never revealed that production could not reach it.

Developer experience: the scheduler's same-head suppression and stale-run
cancellation work against real payloads instead of a shape only the tests
produce.
User experience: a pull request stops accumulating duplicate concurrent review
runs that cancel each other, so a review that starts can finish.

Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
…ree cannot materialize (#1973)" (#1985)

This reverts commit ad0779b.

I wrote that guard and its justification is false. It blocked every OpenCode
dispatch on a DIRTY/CONFLICTING head on the grounds that "a conflicting head can
only produce a failed dispatch". The run object does conclude failure, but the
review is published anyway: the reviewer reads the pull request diff, not a
merge tree -- "Coverage is a separate gate", in the review's own words -- and
only `coverage-source-tree` needs the merge commit.

Measured on .github#1529, the PR that motivated the guard: the last of its 27
dispatches published a 2404-character review at 2026-09-05T19:40:58Z. That
review body carries its own run id, 33969161561, which concluded failure at the
receipt gate nine seconds later. It is the only OpenCode review that head has
(4 reviews total, 1 by opencode-agent[bot]) and it is why the PR now reads as
reviewed. The guard would have discarded it. The pattern is not unique to
#1529: .github#1555 is CONFLICTING right now and its current head carries a
2019-character CHANGES_REQUESTED review from the same reviewer.

I reached "produced nothing" by reading run conclusions, which are roll-ups
that cannot name what a run did.

The cost the guard claimed to protect is also wrong by two orders of magnitude.
Across all 27 dispatches of that head, 109 jobs: 27 were allocated a runner for
0.24 h in total, 82 never were, and the rest of the elapsed time was queue
residency. Blocking the whole chain would have saved fourteen minutes of runner
time.

The repeat itself is a real problem, and it is fixed at its cause rather than
here. `active_review_run_refs` matched a run's `name` exactly against the
review workflow aliases, but the central review workflows define `run-name:`,
so GitHub sends the rendered title in that field and every dispatch run was
filtered out before the check could see it -- `already_running` never fired.
With that repaired, a conflicting head receives one dispatch and the next is
suppressed while it runs, which is the outcome this guard was reaching for
without discarding the review.

Developer experience: the scheduler no longer prints a skip reason that asserts
an outcome contradicted by the runs it cites.
User experience: a conflicting pull request receives a review and repair
guidance, instead of repair guidance alone.

Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
…etector (#1987)

Two unrelated audits share one job in audit-central-ruleset.yml, and the
ruleset step runs first. It has exited 1 since at least 2026-09-04 on
owner-configured governance drift:

    ERROR: exactly two approving reviews are not required
    ERROR: last-push approval protection is disabled
    FAIL: ruleset 18156473 has 2 governance drift reason(s)

Live values on ruleset 18156473 today are `required_approving_review_count: 1`
and `require_last_push_approval: false`, against the 2 and true the audit
asserts. Both are owner-configured settings, and this change does not touch
either them or the audit's expectations: with every session sharing one GitHub
identity and unable to approve another's pull request, a two-approval
requirement may well have been relaxed deliberately, in which case the stale
side is the assertion rather than the configuration. Deciding that is an owner
call.

What is not an owner call is the collateral damage. Because the failure exits a
shared job, the two steps below it never ran: the CodeQL coverage detector and
the backlog-38 bootstrap that opens CodeQL setup pull requests. So the detector
that would have reported a coverage gap has been dead for days, and its
workflow was red the whole time for an unrelated reason -- red status, wrong
subject, and no signal about coverage either way.

The coverage step now carries `if: always()`. It builds its own repository list
into its own temp file and the step above exports nothing to GITHUB_ENV or
GITHUB_OUTPUT, so it has no data dependency to lose; the job still fails
overall. The bootstrap step deliberately does not get the same guard, because
it opens pull requests and running a mutation after an unexplained upstream
failure is a different decision from running a read-only detector. A contract
test pins both halves.

The detector also needed a correction of its own. It accepted
`default_setup_state == "configured"` as coverage, but a repository can report
`configured` with an **empty** `languages` list, which scans nothing. Measured
2026-09-07: life-os, aFIPC and inkspan all report that shape, and life-os has
zero CodeQL analyses of any language while codeql-pr.yml still runs on every
pull request head. The control holds in both directions -- html4tree, naruon
and wardnet have non-empty language lists and do have `dynamic/` analyses for
exactly those languages. The audit workflow now collects `languages` alongside
`state`, the predicate requires a non-empty list, and a payload missing the new
key fails closed rather than falling back to the state alone.

Gaps of the two kinds are reported as different sentences, because they need
different fixes: enable languages on an existing setup, versus set coverage up
at all.

A reviewer then asked whether the newly-unblocked step could run and audit zero
repositories while still passing, and one layer below the fix it could:

    $ echo '[]' | python3 scripts/ci/audit_org_codeql_coverage.py
    PASS: all 0 repositories have real CodeQL coverage        exit 0

The calling workflow already refuses that -- its sentinel check requires known
private repositories to appear in the enumeration, which an empty list fails --
but the script is directly runnable against a JSON path or stdin, so the guard
did not cover every entry point. `main` now refuses an empty payload. This is
the same vacuous-pass shape as the `configured`-with-no-languages case above,
one level down, which is where it was found: a pass that examines nothing is
not a pass.

The step's independence from the failing step above it is established
mechanically rather than by reading the YAML. Steps can only share state
through `GITHUB_ENV`, `GITHUB_OUTPUT`, `GITHUB_PATH` or files, since each `run:`
is a separate shell. The ruleset step uses none of those channels, and the two
steps' `$RUNNER_TEMP` paths are disjoint: `central-required-workflow-*`,
`ruleset-probe-*` and `stacked-opencode-ruleset.*` against `codeql-coverage-*`,
`codeql-analysis-*` and `codeql-default-setup-*`.

Developer experience: a governance-drift failure no longer hides an unrelated
security-coverage result, and the audit says which of the two problems a
repository has.
User experience: a repository whose CodeQL setup is switched on but scanning
nothing is reported as uncovered instead of counted as covered.

Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
…1989)

#1987 taught the CodeQL coverage audit to refuse an empty payload, because
"PASS: all 0 repositories have real CodeQL coverage" reads as success over a
run that examined nothing. Reviewing that change, host 2 fed it a payload of a
single *archived* repository:

    PASS: all 1 repositories have real CodeQL coverage        exit 0

Non-empty, so it clears the new guard, and archived repositories are then
legitimately skipped by the coverage loop. The subject set is empty again, by a
different route -- the same defect the guard was added to close, one input shape
sideways from the one it checks.

The count that matters is what the audit examined. `auditable_repositories()`
is now the single place that decides which repositories are in scope, shared by
the loop and by the guard, so the two cannot drift apart when the archived rule
changes. The guard refuses an empty examined set however it became empty, and
the PASS line reports the examined count rather than the supplied one, so an
organization of nothing but archived repositories can no longer be reported as
fully covered.

Developer experience: the pass line's number is the number of repositories the
run actually checked.
User experience: an audit that examined nothing says so instead of passing.

Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

maintenance priority: medium Normal-priority or P2 work status: needs-review Open pull request requiring current-head review or checks type: maintenance Maintenance, build, dependency, or operational upkeep

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant