GRM-54: fix: fix broken automation pipeline (auto-merge, Vikunja, CI enforcement)

This commit is contained in:
2026-06-22 08:04:54 +00:00
parent ad3c43bf8e
commit 0bf78d4f83
8 changed files with 97 additions and 9 deletions
+8 -1
View File
@@ -31,7 +31,14 @@ jobs:
PYTHONPATH: src
run: |
. .venv/bin/activate
python3 scripts/ci/doc_coverage.py
python3 scripts/ci/doc_coverage.py --fail-on-missing
- name: Dependency security scan
run: |
. .venv/bin/activate
# Install pip in venv if missing (needed by pip-audit)
.venv/bin/python -m ensurepip 2>/dev/null || true
PIPAPI_PYTHON_LOCATION=$PWD/.venv/bin/python \
pip-audit --desc --skip-editable 2>&1 || true
release-dry-run:
needs: [quality, detect-changes]