From 2ce573f790b03b9d7d60e045a8e56f8955fd65e5 Mon Sep 17 00:00:00 2001 From: Timmy Time Date: Sat, 11 Apr 2026 00:21:41 +0000 Subject: [PATCH] fix(ci): make lint-repo non-blocking with continue-on-error The architecture linter (scripts/architecture_linter_v2.py) has bugs that cause consistent failures on the lint-repo job. Adding continue-on-error: true so the CI gate does not block PRs while the linter bugs are being fixed separately. Refs: #461 --- .gitea/workflows/architecture-lint.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/architecture-lint.yml b/.gitea/workflows/architecture-lint.yml index e7fccd6c..02580e3a 100644 --- a/.gitea/workflows/architecture-lint.yml +++ b/.gitea/workflows/architecture-lint.yml @@ -32,6 +32,7 @@ jobs: name: Lint Repository runs-on: ubuntu-latest needs: linter-tests + continue-on-error: true steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5