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