Empty
ai/code-review No changes to review
pictest/pipeline/head This commit looks good

This commit is contained in:
2026-05-03 10:40:02 +01:00
commit 7ee8ff382b
16 changed files with 1849 additions and 0 deletions
Vendored
+20
View File
@@ -0,0 +1,20 @@
pipeline {
agent any
environment {
OPENAI_API_KEY = credentials('OPENAI_API_KEY')
GITEA_TOKEN = credentials('GITEA_TOKEN')
GITEA_URL = 'https://git.jb9.uk'
CODEX_MODEL = 'gpt-4'
AI_REVIEW_FAIL_ON_FINDINGS = 'false'
}
stages {
stage ('AI Code review') {
steps {
sh 'python3 scripts/ai_code_review.py'
}
}
}
}