You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A manually dispatched backfill run succeeded but published an empty report because the workflow could fall back to repo-scoped github.token. This PR makes that failure loud instead of silently producing bad evidence.
Low Risk
Low risk: workflow-only changes that tighten authentication requirements and fail fast when the required secret is missing. Main impact is operational—scheduled/manual runs will now error instead of producing incomplete results if the org token isn’t configured.
Overview Tightens GitHub Actions auth for review-feedback sweeps/backfills. The review-feedback-sentinel and review-feedback-backfill workflows no longer fall back to github.token, and instead require secrets.EVALOPS_REVIEW_GUARD_TOKEN.
Adds a preflight step that hard-fails with a clear error message when GH_TOKEN is unset, preventing silently empty ledgers/reports when the job lacks org-wide PR read access.
Reviewed by Cursor Bugbot for commit dd901fb. Bugbot is set up for automated code reviews on this repo. Configure here.
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
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.
Summary
github.tokenEVALOPS_REVIEW_GUARD_TOKENis missingVerification
Context
A manually dispatched backfill run succeeded but published an empty report because the workflow could fall back to repo-scoped
github.token. This PR makes that failure loud instead of silently producing bad evidence.