axone-protocol / status

🟩 Uptime and historical data of the Axone services
http://status.axone.xyz/
BSD 3-Clause "New" or "Revised" License
1 stars 0 forks source link

🔧 Add .coderabbit.yaml to exclude generated files from CodeRabbit reviews #73

Open coderabbitai[bot] opened 1 month ago

coderabbitai[bot] commented 1 month ago

As requested by @ccamel, we should add a .coderabbit.yaml configuration file to the root directory of the repository to exclude the api, graphs and history folders from being reviewed by CodeRabbit, as they contain generated files from the Upptime monitoring tool.

Pull Request: https://github.com/axone-protocol/status/pull/72 Comment: https://github.com/axone-protocol/status/pull/72#discussion_r1780063844

ccamel commented 1 month ago

@coderabbitai Give me the contents of the .coderabbit.yaml configuration file that addresses this issue.

coderabbitai[bot] commented 1 month ago

[!TIP] For best results, initiate chat on the files or code changes.

@ccamel, based on the previous learnings, here's the contents of the .coderabbit.yaml file that addresses this issue:

path_filters:
  exclude:
    - api/**
    - graphs/**
    - history/**

This configuration will exclude the graphs, and history folders from being reviewed by CodeRabbit, as they contain generated files from Upptime.


🧠 Learnings used ``` Learnt from: ccamel PR: axone-protocol/status#72 File: history/axone-documentation-site.yml:4-5 Timestamp: 2024-09-29T15:33:09.747Z Learning: The `graph`, `history`, and `static/up` folders in the repository contain generated files for Upptime and should be excluded from CodeRabbit code reviews. ```