Uh oh!
There was an error while loading. Please reload this page.
chore(ci): retire the public PII gate everywhere - #188
Merged
Conversation
Removes the public PII gate in full, per Lukas (2026-08-10). The gate was
already inert — parked under backend#1409 (PII_DENYLIST was never provisioned,
so it failed closed on every public-repo PR while being a required check
nowhere) and its public callers were removed org-wide. This deletes what
remained:
- .github/workflows/public-pii-gate.yml (the reusable gate)
- .github/workflows/public-pii-gate-selftest.yml (its decision-table selftest)
- scripts/tests/pii-gate-selftest.sh (the selftest harness)
Also fixes the references that would otherwise dangle at deleted files:
- code-quality-caller.yml / code-quality.yml: drop pointers to the removed
gate + selftest
- version-bump-gate.yml: keep the override-ordering + grep-error lessons but
past-tense them ("the retired public-pii-gate")
- caller-drift.py: the visibility-mismatch finding no longer claims the pii
gate is required
Kept as history: the repo-inventory retirement tombstone and the
conformance-gate defect-class lesson (both reference backend#1409, not a live
file).
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>saadqbal
approved these changes
Aug 10, 2026
Uh oh!
There was an error while loading. Please reload this page.
This was referenced Aug 10, 2026
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.
Summary
Removes the public PII gate in full, per Lukas (2026-08-10) — "remove the PII-gate from everyone, everything for now."
The gate was already inert: parked under backend#1409 (the
PII_DENYLISTorg secret was never provisioned, so it failed closed on every public-repo PR while being a required check nowhere), and its public callers were removed org-wide. This deletes what remained and cleans up the trail.What is removed
.github/workflows/public-pii-gate.yml— the reusable gate.github/workflows/public-pii-gate-selftest.yml— its decision-table selftestscripts/tests/pii-gate-selftest.sh— the selftest harnessReferences fixed (would otherwise dangle at deleted files)
code-quality-caller.yml,code-quality.yml— dropped pointers to the removed gate + selftestversion-bump-gate.yml— kept the override-ordering + grep-error lessons, past-tensed to "the retired public-pii-gate"caller-drift.py— the visibility-mismatch finding no longer claims the pii gate is requiredKept intentionally (history, not live files)
repo-inventory.ymlretirement tombstoneconformance-gate.ymldefect-class lesson (SIGPIPE rc=141)Both reference backend#1409, not a live workflow.
Test plan
caller-drift.pyno longer expects a pii caller (already absent from the inventory), so no repo will be re-flaggedCloses the "remove PII gate" request. Related now-moot tickets (backend#1630, .github#62/#165, backend#1559) tracked separately.
Note
Low Risk
Removes unused CI workflows and tests with no runtime or auth changes; remaining repos should not lose required checks if callers were already removed.
Overview
Fully removes the org’s public PII gate: the reusable workflow
public-pii-gate.yml, its CI selftest workflow, andscripts/tests/pii-gate-selftest.sh.Updates comments and docs so nothing still points at deleted workflows—
code-quality-caller.yml/code-quality.ymldrop PII-gate mentions;version-bump-gate.ymlkeeps override-ordering lessons but refers to the retired gate;caller-drift.pysays repo visibility drives which caller set applies, not PII-gate requirements.No replacement scanning is added here; callers were already gone and the gate was inert without
PII_DENYLIST.Reviewed by Cursor Bugbot for commit 2c90f05. Bugbot is set up for automated code reviews on this repo. Configure here.