From 3f7320cd66dc8893d87982125f00ee3bd489b8e2 Mon Sep 17 00:00:00 2001 From: Carlos Rodriguez Date: Thu, 7 Mar 2024 21:26:58 +0100 Subject: [PATCH] chore(ci): add coderabbit settings (#5928) * chore(ci): add coderabbit settings * exclude proto generated files * fix syntax * update path filters --- .coderabbit.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .coderabbit.yml diff --git a/.coderabbit.yml b/.coderabbit.yml new file mode 100644 index 00000000000..8cb1d76fea4 --- /dev/null +++ b/.coderabbit.yml @@ -0,0 +1,35 @@ +language: "en" +early_access: false +reviews: + request_changes_workflow: false + high_level_summary: true + poem: false + review_status: true + collapse_walkthrough: true + path_filters: + - "!**/*.pb.go" + - "!**/*.pb.gw.go" + - "!**/*.mod" + - "!**/*.sum" + path_instructions: + - path: "**/*.go" + instructions: "Review the Golang code for conformity with the Uber Golang style guide, highlighting any deviations." + - path: "e2e/**/*" + instructions: | + "Assess the integration and e2e test code assessing sufficient code coverage for the changes associated in the pull request" + - path: "**/*_test.go" + instructions: | + "Assess the unit test code assessing sufficient code coverage for the changes associated in the pull request" + - path: "**/*.md" + instructions: | + "Assess the documentation for misspellings, grammatical errors, missing documentation and correctness" + auto_review: + enabled: true + ignore_title_keywords: + - "WIP" + - "DO NOT MERGE" + drafts: false + base_branches: + - "main" +chat: + auto_reply: true \ No newline at end of file