ai-pr-reviewer icon indicating copy to clipboard operation
ai-pr-reviewer copied to clipboard

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

Open raphaelvarieras opened this issue 2 years ago • 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 avatar Nov 09 '23 17:11 raphaelvarieras

@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.

guritfaq avatar Nov 11 '23 03:11 guritfaq

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.

raphaelvarieras avatar Nov 11 '23 23:11 raphaelvarieras