From 740f7f50e87fbb2b3a696abeae9422ff03859c92 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Sun, 5 Jul 2026 12:36:16 +0000 Subject: [PATCH] fix: remove pip ecosystem from Dependabot config This integration has no pip dependencies to manage - it's a Home Assistant custom integration that manages dependencies through manifest.json instead. The pip ecosystem configuration was causing daily failures because Dependabot couldn't find any Python dependency files (requirements.txt, setup.py, etc.) in the repository root. Fixes the 'No files found in /' errors in Dependabot Updates workflow. Co-authored-by: Michael Shaffer --- .github/dependabot.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 47a31bc..1230149 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,7 +4,3 @@ updates: directory: "/" schedule: interval: "daily" - - package-ecosystem: "pip" - directory: "/" - schedule: - interval: "daily"