From d09083de8ba04f8772e700907e0f27e9b5671185 Mon Sep 17 00:00:00 2001 From: Rajendra Reddy Date: Sat, 28 Mar 2026 04:13:06 +0000 Subject: [PATCH] Update .gitea/workflows/codeant.yml --- .gitea/workflows/codeant.yml | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/.gitea/workflows/codeant.yml b/.gitea/workflows/codeant.yml index 1c6d9dd..3761566 100644 --- a/.gitea/workflows/codeant.yml +++ b/.gitea/workflows/codeant.yml @@ -40,14 +40,7 @@ jobs: # The CLI uses this for non-interactive auth CODEANT_API_TOKEN: ${{ secrets.CODEANT_API_KEY }} run: | - echo "Checking CodeAnt Version..." - codeant --version - codeant review - #echo "1. Scanning for Secrets..." - #codeant secrets --all --fail-on HIGH - - #echo "2. Running Security Analysis (Vulnerabilities)..." - #codeant security-analysis --all --fail-on HIGH - - #echo "3. Running Static Analysis (Quality & Bugs)..." - #codeant static-analysis --all --fail-on CRITICAL \ No newline at end of file + echo "Starting Full Repository AI Review..." + # --all reviews the whole codebase + # --fail-on MAJOR will fail the build if high-severity bugs are found + codeant review --all --fail-on MAJOR \ No newline at end of file