coderabbitai / ai-pr-reviewer

AI-based Pull Request Summarizer and Reviewer with Chat Capabilities.
https://coderabbit.ai
MIT License
1.41k stars 256 forks source link

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

Open raphaelvarieras opened 7 months ago

raphaelvarieras commented 7 months ago

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
guritfaq commented 7 months ago

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

raphaelvarieras commented 7 months ago

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.