From ce7b5f93d362bc9eb7796bd7b96d0b3111e6dcb8 Mon Sep 17 00:00:00 2001 From: lucaronin Date: Wed, 18 Mar 2026 09:24:37 +0100 Subject: [PATCH] ci: raise hotspot code health threshold to 9.5 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Current score: 9.53. Floor raised from 9.2 → 9.5 to lock in gains. --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 11442080..22ab0dd2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -85,13 +85,13 @@ jobs: # comments on PRs). This step enforces a minimum floor on the # project-wide Hotspot Code Health score (weighted avg of the most # frequently edited files — the ones that matter most). - # Current baseline: 9.33 | Aspirational target: 9.5 - - name: Hotspot Code Health gate (≥9.2) + # Current baseline: 9.53 | Aspirational target: 9.8 + - name: Hotspot Code Health gate (≥9.5) env: CODESCENE_PAT: ${{ secrets.CODESCENE_PAT }} CODESCENE_PROJECT_ID: ${{ secrets.CODESCENE_PROJECT_ID }} run: | - THRESHOLD=9.2 + THRESHOLD=9.5 SCORE=$(curl -sf \ -H "Authorization: Bearer $CODESCENE_PAT" \ -H "Accept: application/json" \