From 28a95f714938418d135e32c9c0bee387600cc979 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 21 Sep 2026 06:50:54 +0000 Subject: [PATCH] chore(debt): re-measure Debtfile probes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Machine-written by .github/workflows/debt-measure.yml. Counts follow the probes; ceilings only ever fall. A ceiling that needs to RISE is not done here — raise it in a human PR with a Debt-exception: trailer. --- .machine_readable/Debtfile.a2ml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.machine_readable/Debtfile.a2ml b/.machine_readable/Debtfile.a2ml index 6c19672c1..2018ccd29 100644 --- a/.machine_readable/Debtfile.a2ml +++ b/.machine_readable/Debtfile.a2ml @@ -39,7 +39,7 @@ forgotten. ### gate-scripts-without-tests - description: Scripts under scripts/ with no matching scripts/tests/-test.sh — a gate with no test has never been shown able to fail - probe: n=0; for f in $(git ls-files 'scripts/*.sh'); do b=$(basename "$f" .sh); case "$b" in *-test) continue;; esac; if [ ! -f "scripts/tests/${b}-test.sh" ] && [ ! -f "scripts/tests/${b#check-}-test.sh" ] && [ ! -f "scripts/tests/${b#run-}-test.sh" ]; then n=$((n+1)); fi; done; echo "$n" -- count: 31 +- count: 40 - ceiling: 30 - severity: high - policy: remediable @@ -51,8 +51,8 @@ forgotten. ### shell-scripts-missing-spdx - description: Shell scripts under scripts/ without an SPDX-License-Identifier in the first three lines - probe: n=0; for f in $(git ls-files 'scripts/*.sh'); do head -3 "$f" | grep -q 'SPDX-License-Identifier' || n=$((n+1)); done; echo "$n" -- count: 0 -- ceiling: 2 +- count: 1 +- ceiling: 1 - severity: medium - policy: remediable - tri: eliminate @@ -61,7 +61,7 @@ forgotten. ### todo-fixme-markers - description: Files carrying a TODO or FIXME marker. Advisory — a marker is a note to self, not a defect - probe: git grep -I -l -E '\b(TODO|FIXME)\b' -- . ':(exclude).machine_readable/Debtfile.a2ml' ':(exclude)docs/DEBTFILE-SPEC.adoc' | wc -l -- count: 77 +- count: 80 - ceiling: 76 - severity: low - policy: remediable