From 2bbf72b7bf89da6dd01796864c33095cfbb17630 Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Tue, 9 Sep 2025 21:49:11 +0100 Subject: [PATCH] Fix invalid dependabot config Error: Update configs must have a unique combination of 'package-ecosystem', 'directory', and 'target-branch'. Dependabot cannot determine if 'docker' has overlapping directories. --- .github/dependabot.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 13909a421..b46f195b8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -35,22 +35,6 @@ updates: - "{{cookiecutter.project_slug}}/compose/local/django/" - "{{cookiecutter.project_slug}}/compose/local/docs/" - "{{cookiecutter.project_slug}}/compose/production/django/" - schedule: - interval: "daily" - ignore: - - dependency-name: "*" - update-types: - - "version-update:semver-major" - - "version-update:semver-minor" - labels: - - "update" - groups: - docker-python: - patterns: - - "*" - - - package-ecosystem: "docker" - directories: - "{{cookiecutter.project_slug}}/compose/local/node/" - "{{cookiecutter.project_slug}}/compose/production/aws/" - "{{cookiecutter.project_slug}}/compose/production/postgres/"