Skip to content

Commit abade8f

Browse files
author
Akkari
committed
fix: limit CI validation to Python files until docs rubrics ship
Quorum auto-detection falls back to python-code rubric for non-.py files, causing false failures on markdown, YAML, etc. Restrict changed-file detection to *.py until dedicated rubrics are available for other types.
1 parent 7a44960 commit abade8f

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/quorum-validate.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,11 @@ jobs:
5656
fi
5757
5858
# Get changed files that Quorum can validate
59+
# NOTE: Currently limited to Python files — Quorum auto-detects the
60+
# python-code rubric for .py files. Other file types (markdown, YAML,
61+
# etc.) will be added once dedicated rubrics are available.
5962
CHANGED=$(git diff --name-only "$BASE" HEAD -- \
60-
'*.py' '*.md' '*.yaml' '*.yml' '*.json' '*.toml' '*.ps1' \
63+
'*.py' \
6164
| grep -v '__pycache__' \
6265
| grep -v '.github/' \
6366
| head -50)

0 commit comments

Comments
 (0)