Skip to content

ci: trust same-head OpenCode review OID - #66

Merged
seonghobae merged 1 commit into
mainfrom
codex/current-head-review-oid
Jun 25, 2026
Merged

ci: trust same-head OpenCode review OID#66
seonghobae merged 1 commit into
mainfrom
codex/current-head-review-oid

Conversation

@seonghobae

Copy link
Copy Markdown
Contributor

Summary

  • Treat an OpenCode review attached to the exact PR head commit OID as current-head approval.
  • Stop rejecting same-head approvals only because Git commit metadata has a later committedDate than the GitHub review submittedAt.
  • Update scheduler self-tests and unit tests with the live false-negative shape observed in bandscope PRs.

Evidence

Validation

  • python3 -m coverage run -m pytest
  • python3 -m coverage report --fail-under=100
  • python3 -m interrogate -c pyproject.toml .
  • python3 scripts/ci/pr_review_merge_scheduler.py --self-test
  • python3 -m py_compile scripts/ci/pr_review_merge_scheduler.py
  • /opt/homebrew/bin/actionlint .github/workflows/opencode-review.yml .github/workflows/pr-review-merge-scheduler.yml .github/workflows/strix.yml
  • git diff --check

Copilot AI review requested due to automatic review settings June 25, 2026 17:05

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Pull request overview

This PR updates the PR review/merge scheduler to treat an OpenCode review attached to the exact PR head commit OID as “current-head approved,” even when Git commit timestamp metadata would previously have made the review look “stale.”

Changes:

  • Simplified “current head” matching to rely solely on review.commit.oid == pr.headRefOid (no timestamp ordering checks).
  • Removed the “stale same-head review” explanation/auto-merge-disabling path that was causing false negatives.
  • Updated unit tests and the scheduler self-test fixtures to reflect the observed same-head false-negative shape.

Reviewed changes

Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.

File Description
scripts/ci/pr_review_merge_scheduler.py Removes timestamp-based staleness checks and trusts same-head OpenCode approvals; adjusts scheduler behavior accordingly.
tests/test_pr_review_merge_scheduler.py Updates expectations so same-head approvals (even with earlier/absent submittedAt) are treated as current-head approvals.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@opencode-agent

opencode-agent Bot commented Jun 25, 2026

Copy link
Copy Markdown
Contributor

OpenCode Review Overview

  • Head SHA: bb5a5e2e10a283a5f6e246a2996e16e0f7d56002
  • Workflow run: 28187793530
  • Workflow attempt: 1
  • Gate result: APPROVE (approval step)

Pull request overview

OpenCode reviewed the current-head bounded evidence and found no blocking issues.

Findings

No blocking findings.

Summary

PR #66 updates the PR review merge scheduler to trust same-head OpenCode review OIDs, removing redundant timestamp checks. The changes are well-tested, with 100% test and docstring coverage. Verification posture: Linter/static: PASS, TDD/regression: PASS, Coverage: 100%, Docstring coverage: 100%, DAG: PR review flow, PoC/execution: Verified via self-test, DDD/domain: Aligns with OpenCode review policies, CDD/context: Consistent with repository conventions, Similar issues: N/A, Claim/concept check: Verified, Standards search: N/A, Compatibility/convention: Maintains backward compatibility, Breaking-change/backcompat: No breaking changes, Performance: No impact, Developer experience: Improved clarity, User experience: No negative impact, Security/privacy: No issues identified.

Verification posture: CodeGraph evidence was initialized and bounded current-head evidence reviewed for changed-file evidence including scripts/ci/pr_review_merge_scheduler.py, tests/test_pr_review_merge_scheduler.py.
Linter/static: workflow/static review evidence is bounded by the current-head GitHub Checks gate and changed-file evidence.
TDD/regression: coverage execution evidence and focused changed hunks were reviewed from bounded-review-evidence.md.
Coverage: coverage execution evidence proves 100% test coverage.
Docstring coverage: coverage execution evidence proves 100% docstring coverage.
DAG: Change Flow DAG maps scripts/ci/pr_review_merge_scheduler.py through bounded evidence, review risk, and required checks.
PoC/execution: coverage-evidence job executed on the current head and reported PASS.
DDD/domain: workflow and repository-governance invariants were reviewed against changed files in bounded evidence.
CDD/context: CodeGraph evidence, changed-file history, and focused hunks were reviewed from bounded-review-evidence.md.
Similar issues: changed-file history evidence was reviewed for comparable local precedents.
Claim/concept check: bounded evidence, repository source, and current-head workflow evidence were used for claims.
Standards search: standards and external-source checks are delegated to configured OpenCode web_search/Context7/DeepWiki sources when applicable; no evidence-backed standards blocker is present in bounded evidence.
Compatibility/convention: changed workflow/script conventions and compatibility surfaces were checked in bounded evidence.
Breaking-change/backcompat: deployment evidence and changed-file history were checked for backward-compatibility risk.
Performance: changed surfaces were checked for performance risk in bounded evidence.
Developer experience: changed automation, review, and maintenance surfaces were checked for helpful or obstructive DX impact in bounded evidence.
User experience: changed files did not identify a user-facing UI surface; bounded evidence was reviewed for UX impact.
Security/privacy: workflow-token, review-gate, and repository-automation security/privacy boundaries were checked in bounded evidence.

  • Result: APPROVE
  • Reason: No blockers found; changes align with repository conventions and standards
  • Head SHA: bb5a5e2e10a283a5f6e246a2996e16e0f7d56002
  • Workflow run: 28187793530
  • Workflow attempt: 1

Change Flow DAG

flowchart LR
  PR["PR changed files"] --> Evidence["OpenCode bounded evidence"]
  Evidence --> S1["CI script: pr_review_merge_scheduler.py"]
  S1 --> I1["review and security gate shell path"]
  I1 --> R1["Review risk: CI script: pr_review_merge_scheduler.py"]
  R1 --> V1["bash -n plus Strix self-test"]
  Evidence --> S2["Test: test_pr_review_merge_scheduler.py"]
  S2 --> I2["regression suite"]
  I2 --> R2["Review risk: Test: test_pr_review_merge_scheduler.py"]
  R2 --> V2["targeted test run"]
Loading

@opencode-agent opencode-agent 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.

Pull request overview

OpenCode reviewed the current-head bounded evidence and found no blocking issues.

Findings

No blocking findings.

Summary

PR #66 updates the PR review merge scheduler to trust same-head OpenCode review OIDs, removing redundant timestamp checks. The changes are well-tested, with 100% test and docstring coverage. Verification posture: Linter/static: PASS, TDD/regression: PASS, Coverage: 100%, Docstring coverage: 100%, DAG: PR review flow, PoC/execution: Verified via self-test, DDD/domain: Aligns with OpenCode review policies, CDD/context: Consistent with repository conventions, Similar issues: N/A, Claim/concept check: Verified, Standards search: N/A, Compatibility/convention: Maintains backward compatibility, Breaking-change/backcompat: No breaking changes, Performance: No impact, Developer experience: Improved clarity, User experience: No negative impact, Security/privacy: No issues identified.

Verification posture: CodeGraph evidence was initialized and bounded current-head evidence reviewed for changed-file evidence including scripts/ci/pr_review_merge_scheduler.py, tests/test_pr_review_merge_scheduler.py.
Linter/static: workflow/static review evidence is bounded by the current-head GitHub Checks gate and changed-file evidence.
TDD/regression: coverage execution evidence and focused changed hunks were reviewed from bounded-review-evidence.md.
Coverage: coverage execution evidence proves 100% test coverage.
Docstring coverage: coverage execution evidence proves 100% docstring coverage.
DAG: Change Flow DAG maps scripts/ci/pr_review_merge_scheduler.py through bounded evidence, review risk, and required checks.
PoC/execution: coverage-evidence job executed on the current head and reported PASS.
DDD/domain: workflow and repository-governance invariants were reviewed against changed files in bounded evidence.
CDD/context: CodeGraph evidence, changed-file history, and focused hunks were reviewed from bounded-review-evidence.md.
Similar issues: changed-file history evidence was reviewed for comparable local precedents.
Claim/concept check: bounded evidence, repository source, and current-head workflow evidence were used for claims.
Standards search: standards and external-source checks are delegated to configured OpenCode web_search/Context7/DeepWiki sources when applicable; no evidence-backed standards blocker is present in bounded evidence.
Compatibility/convention: changed workflow/script conventions and compatibility surfaces were checked in bounded evidence.
Breaking-change/backcompat: deployment evidence and changed-file history were checked for backward-compatibility risk.
Performance: changed surfaces were checked for performance risk in bounded evidence.
Developer experience: changed automation, review, and maintenance surfaces were checked for helpful or obstructive DX impact in bounded evidence.
User experience: changed files did not identify a user-facing UI surface; bounded evidence was reviewed for UX impact.
Security/privacy: workflow-token, review-gate, and repository-automation security/privacy boundaries were checked in bounded evidence.

  • Result: APPROVE
  • Reason: No blockers found; changes align with repository conventions and standards
  • Head SHA: bb5a5e2e10a283a5f6e246a2996e16e0f7d56002
  • Workflow run: 28187793530
  • Workflow attempt: 1

@seonghobae
seonghobae merged commit 21332b0 into main Jun 25, 2026
3 checks passed
@seonghobae
seonghobae deleted the codex/current-head-review-oid branch June 25, 2026 17:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants