Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/quorum-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,11 @@ jobs:
fi

# Get changed files that Quorum can validate
# NOTE: Currently limited to Python files — Quorum auto-detects the
# python-code rubric for .py files. Other file types (markdown, YAML,
# etc.) will be added once dedicated rubrics are available.
CHANGED=$(git diff --name-only "$BASE" HEAD -- \
'*.py' '*.md' '*.yaml' '*.yml' '*.json' '*.toml' '*.ps1' \
'*.py' \
| grep -v '__pycache__' \
| grep -v '.github/' \
| head -50)
Expand Down