File tree Expand file tree Collapse file tree 4 files changed +4
-0
lines changed
Expand file tree Collapse file tree 4 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -6,4 +6,5 @@ type Config struct {
66 StatusCheckName string `yaml:"status_check_name"` // Name of the status check (default: "Kusari Inspector")
77 PostCommentOnFailure bool `yaml:"post_comment_on_failure"` // Also post comment when status check fails
88 PostCommentOnSuccess bool `yaml:"post_comment_on_success"` // Also post comment when status check succeeds
9+ FullCodeReviewEnabled bool `yaml:"full_code_review_enabled"` // Full code review via the LLM (enabled by default)
910}
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ var DefaultConfig = configuration.Config{
2020 StatusCheckName : "Kusari Inspector" ,
2121 PostCommentOnFailure : true ,
2222 PostCommentOnSuccess : false ,
23+ FullCodeReviewEnabled : true ,
2324}
2425
2526func GenerateConfig (forceWrite bool ) error {
Original file line number Diff line number Diff line change @@ -3,3 +3,4 @@ container_version_pinning_check_enabled: true
33status_check_name : Kusari Inspectormatic
44post_comment_on_failure : true
55post_comment_on_success : false
6+ full_code_review_enabled : false
Original file line number Diff line number Diff line change @@ -3,3 +3,4 @@ container_version_pinning_check_enabled: true
33status_check_name : Kusari Inspector
44post_comment_on_failure : true
55post_comment_on_success : false
6+ full_code_review_enabled : true
You can’t perform that action at this time.
0 commit comments