KB-1776

S134 CI Slim Report

2 min read Revision 1
reportcis134

S134-CI-SLIM Report — 2026-03-25

Change

Removed build and E2E Smoke Test from required status checks on web-test main branch protection. Both workflows still run on every PR but no longer block merge.

Before (6 required checks)

  1. Pass Gate
  2. Quality Gate
  3. E2E Smoke Test
  4. build
  5. check-critical-files
  6. Contract Schema Validation

Estimated merge wait: ~4 minutes

After (4 required checks)

  1. Pass Gate
  2. Quality Gate
  3. check-critical-files
  4. Contract Schema Validation

Estimated merge wait: ~1.5 minutes

Note

build and E2E Smoke Test still execute on every PR. Results still visible on PR page. They just don't block merge. Post-deploy E2E catches production issues.

Rollback Command

gh api -X PATCH repos/Huyen1974/web-test/branches/main/protection/required_status_checks \
  --input - <<'EOF'
{
  "strict": true,
  "contexts": ["Pass Gate", "Quality Gate", "E2E Smoke Test", "build", "check-critical-files", "Contract Schema Validation"]
}
EOF