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

Fix the repositories list - it references incorrect/test repositories.

The repositories array lists test and example repositories that don't match this project:

  • renovatebot/github-action
  • renovate-tests/cocoapods1
  • renovate-tests/gomod1

This configuration will not manage dependencies for the current repository (sca075/Python-package-valetudo-map-parser).

🔎 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
In .github/workflows/renovate.json around lines 9 to 12, the repositories array
contains unrelated test/example repos; replace that list with the correct
repository reference for this project (e.g.
"sca075/Python-package-valetudo-map-parser" or the full GitHub path
"github.com/sca075/Python-package-valetudo-map-parser"), or remove the
repositories field entirely so Renovate defaults to the current repository;
update the JSON accordingly and ensure the resulting value is a valid JSON array
of repository strings.

],
"packageRules": [
{
"description": "lockFileMaintenance",
"matchUpdateTypes": [
"pin",
"digest",
"patch",
"minor",
"major",
"lockFileMaintenance"
],
"dependencyDashboardApproval": false,
"stabilityDays": 0
}
]
}
6 changes: 5 additions & 1 deletion SCR/valetudo_map_parser/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Valetudo map parser.
Version: 0.1.13"""
Version: 0.1.14"""

from pathlib import Path

Expand All @@ -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