coderabbitai/ai-pr-reviewer

Config from .coderabbit.yaml path_filters doesn't seem to be used

Opened this issue · 2 comments

I have a project in which I actually specifically want to include YAML and CSV files. Yet even when adding these into my .coderabbit.yaml file, they seem to still get excluded.

icoderabbit.yaml:

language: "en"
early_access: true
reviews:
  path_filters:
    - "**/*.yaml"
    - "**/*.yml"
    - "**/*.csv"
  auto_review:
    enabled: true
    drafts: false
chat:
  auto_reply: true

@raphaelvarieras The .coderabbit.yaml is intended for CodeRabbit Pro. If you are using ai-pr-reviewer (OSS), you should use .github/workflows/ai-pr-reviewer.yml instead.

Ah ok, thank you. And so how can I specify path filters in the Github action? I tried adding in with: block but it didn't seem to work for me.