Skip to content
Closed
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
29 changes: 29 additions & 0 deletions .github/workflows/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"branchPrefix": "dev/",
"dryRun": "full",
"username": "renovate-release",
"gitAuthor": "Renovate Bot <bot@renovateapp.com>",
"onboarding": false,
"platform": "github",
"includeForks": true,
"repositories": [
"renovatebot/github-action",
"renovate-tests/cocoapods1",
"renovate-tests/gomod1"
Comment on lines +9 to +12
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

Critical: Repository list contains incorrect repositories.

The repositories list contains Renovate test repositories and the Renovate GitHub Action repo, not this project's repository. This configuration will not work for managing dependencies in this project.

🔎 Proposed fix
   "repositories": [
-    "renovatebot/github-action",
-    "renovate-tests/cocoapods1",
-    "renovate-tests/gomod1"
+    "sca075/Python-package-valetudo-map-parser"
   ],
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
"repositories": [
"renovatebot/github-action",
"renovate-tests/cocoapods1",
"renovate-tests/gomod1"
"repositories": [
"sca075/Python-package-valetudo-map-parser"
],
🤖 Prompt for AI Agents
.github/workflows/renovate.json around lines 9-12: the "repositories" array
contains unrelated Renovate test repos and the renovatebot action repo; replace
this with the correct repository identifier(s) for this project (e.g.,
"org/name" for this repo) or remove the "repositories" field entirely to let
Renovate target the current repository by default; update the JSON so it lists
only valid repository slugs for which you intend Renovate to run and validate
the file with a JSON linter after editing.

],
"packageRules": [
{
"description": "lockFileMaintenance",
"matchUpdateTypes": [
"pin",
"digest",
"patch",
"minor",
"major",
"lockFileMaintenance"
],
"dependencyDashboardApproval": false,
"stabilityDays": 0
}
]
}
4 changes: 4 additions & 0 deletions SCR/valetudo_map_parser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
from .config.status_text.translations import translations as STATUS_TEXT_TRANSLATIONS
from .config.types import (
CameraModes,
FloorData,
ImageSize,
JsonType,
NumpyArray,
Expand All @@ -20,6 +21,7 @@
RoomStore,
SnapshotStore,
TrimCropData,
TrimsData,
UserLanguageStore,
)
from .config.utils import ResizeParams, async_resize_image
Expand Down Expand Up @@ -162,6 +164,7 @@ def get_default_font_path() -> str:
"StatusText",
# Types
"CameraModes",
"FloorData",
"ImageSize",
"JsonType",
"NumpyArray",
Expand All @@ -170,6 +173,7 @@ def get_default_font_path() -> str:
"RoomStore",
"SnapshotStore",
"TrimCropData",
"TrimsData",
"UserLanguageStore",
# Utilities
"ResizeParams",
Expand Down
Loading