From 50f15fe7e385c0e8b384e2a2713273301e9724eb Mon Sep 17 00:00:00 2001 From: Mauro Ezequiel Moltrasio Date: Thu, 14 May 2026 16:18:14 +0200 Subject: [PATCH] chore(ci): add basic coderabbit configuration file Add a simple coderabbit configuration file to the repo, main points are: - coderabbit will auto review PRs aimed at the main branch or one of the release branches. - It will ignore PRs created by red-hat-konflux, which should be MintMaker updates and should be auto-approved. - Chatting with coderabbit should not require it to be explicitly pinged. --- .coderabbit.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .coderabbit.yml diff --git a/.coderabbit.yml b/.coderabbit.yml new file mode 100644 index 00000000..ebb6de9a --- /dev/null +++ b/.coderabbit.yml @@ -0,0 +1,13 @@ +# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json +reviews: + profile: chill + abort_on_close: true + auto_review: + enabled: true + base_branches: + - main + - ^release-*$ + ignore_usernames: + - red-hat-konflux +chat: + auto_reply: true