Advanced
CI/CD integration
Gate deploys on Talos findings.
Talos returns exit code 10 when findings exceed the configured threshold. Wire it into any CI system that respects exit codes.
Minimal gate
shell
❯ talos-scan --target $STAGING --adapter native --severity critical
GitLab CI
.gitlab-ci.yml
talos:image: python:3.11-slimscript:- pip install talos-redteam- talos-scan --target $STAGING --adapter native --severity highartifacts:paths: [reports/]
Publishing SARIF to GitHub
.github/workflows/talos.yml
- run: talos-scan --target $STAGING --adapter native --sarif- uses: github/codeql-action/upload-sarif@v3with: { sarif_file: ./reports/scan.sarif }