Closed PhilipDeegan closed 6 months ago
[!WARNING]
.coderabbit.yaml
is using a deprecated configuration schemaThe configuration schema (version 1) is deprecated and will be removed on 19th May 2024. Please migrate to the latest schema version.
New Configuration YAML
```yaml early_access: false language: en tone_instructions: '' knowledge_base: learnings: scope: auto issues: scope: auto jira: project_keys: [] linear: team_keys: [] chat: auto_reply: true reviews: profile: chill request_changes_workflow: false high_level_summary: true high_level_summary_placeholder: '@coderabbitai summary' poem: false review_status: true collapse_walkthrough: true path_filters: [] path_instructions: - path: '**.hpp' instructions: >- Review the C++ code, point out issues relative to principles of clean code, expressiveness, and performance. tools: shellcheck: enabled: true ruff: enabled: true markdownlint: enabled: true github-checks: enabled: true timeout_ms: 90000 languagetool: enabled: true disabled_categories: - TYPOS - TYPOGRAPHY - CASING enabled_only: false level: default auto_review: enabled: true ignore_title_keywords: - WIP labels: [] drafts: true base_branches: - master ```Configuration Instructions
- Please see the [configuration documentation](https://docs.coderabbit.ai/guides/configure-coderabbit) for more information. - If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: `# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json`
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
diagnostics git hash is still reading from disk at runtime, should probably use build config version instead if available
Summary by CodeRabbit
git_hash
field toRuntimeSettings
data class.log_runtime_config()
function to include Git hash in settings.try_cpp_build_config()
function inpyphare/pyphare/pharein/diagnostics.py
.Diagnostics
class inpyphare/pyphare/pharein/diagnostics.py
to use build configuration for Git hash retrieval.SystemSettings
class intools/config/config.py
to includegit_hash
andgit_message
attributes.gen_system_file
function.