Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .coderabbit.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
reviews:
profile: assertive
path_instructions:
Expand All @@ -18,3 +19,14 @@ reviews:
enabled: false
flake8: # we use ruff instead (when we use Python)
enabled: false
poem: false
# the commit status is driven by our repository config and required checks, we don't want CodeRabbit messing with it
commit_status: false
auto_review:
# a main purpose of opening a draft PR might be to get CodeRabbit feedback early
drafts: true
finishing_touches:
docstrings:
enabled: false # if we wanted AI to generate docstrings, it would be via CLI, not in the GitHub interface
unit_tests:
enabled: false # Quis custodiet ipsos custodes? not something we want AI doing, especially not via the GitHub interface
8 changes: 4 additions & 4 deletions extensions/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ def hook(self, context: dict[Any, Any]) -> dict[Any, Any]:
context["pytest_cov_version"] = "7.0.0"
#######
context["sphinx_version"] = "8.1.3"
context["pulumi_version"] = "3.204.0"
context["pulumi_version"] = "3.205.0"
context["pulumi_aws_version"] = "7.10.0"
context["pulumi_aws_native_version"] = "1.37.0"
context["pulumi_command_version"] = "1.1.3"
context["pulumi_github_version"] = "6.7.4"
context["pulumi_okta_version"] = "6.0.0"
context["boto3_version"] = "1.40.60"
context["pulumi_github_version"] = "6.8.0"
context["pulumi_okta_version"] = "6.1.0"
context["boto3_version"] = "1.40.57"
context["ephemeral_pulumi_deploy_version"] = "0.0.5"
context["pydantic_version"] = "2.12.3"
context["pyinstaller_version"] = "6.16.0"
Expand Down