From d1ed394a9f53115007ff069ccf7650b20246918c Mon Sep 17 00:00:00 2001 From: Rajendra Reddy Date: Fri, 27 Mar 2026 10:56:32 +0000 Subject: [PATCH] Add .gitea/workflows/codeant.yml --- .gitea/workflows/codeant.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/codeant.yml diff --git a/.gitea/workflows/codeant.yml b/.gitea/workflows/codeant.yml new file mode 100644 index 0000000..0cfcac2 --- /dev/null +++ b/.gitea/workflows/codeant.yml @@ -0,0 +1,17 @@ +name: Codeant Security Scan + +on: + push: + branches: ["main"] + pull_request: + branches: ["main"] + workflow_dispatch: + +jobs: + codeant-scan: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: CodeAnt-AI/codeant-ci-scan-action@v0.0.6 + with: + access_token: {{ secrets.CODEANT_API_TOKEN }} \ No newline at end of file