Skip to content

fix(ci): remove inert placeholder dependabot.yml#27

Merged
hyperpolymath merged 1 commit into
mainfrom
fix/dependabot-remove-template-stub
Jul 21, 2026
Merged

fix(ci): remove inert placeholder dependabot.yml#27
hyperpolymath merged 1 commit into
mainfrom
fix/dependabot-remove-template-stub

Conversation

@hyperpolymath

Copy link
Copy Markdown
Owner

This repo's .github/dependabot.yml is GitHub's unedited template. Its only entry is the literal placeholder:

  - package-ecosystem: ""   # See documentation for possible values
    directory: "/"          # Location of package manifests

An empty package-ecosystem fails Dependabot's schema validation, and GitHub rejects the whole file rather than the single bad entry. So this config has never done anything.

Why delete rather than edit

Removing just the stub entry would leave updates: [] — also invalid. Since the placeholder is the entire file, the file goes.

Nothing that currently works is lost: the config is provably inert. Deleting it removes dead config rot and is trivially reversible from history.

If you want Dependabot here

Add a real entry with a groups: block, matching the 338 estate repos that already have a valid config:

version: 2
updates:
  - package-ecosystem: "github-actions"
    directory: "/"
    schedule:
      interval: "weekly"
    groups:
      github-actions:
        patterns:
          - "*"

🤖 Generated with Claude Code

This file is GitHub's unedited template. Its only entry is the literal
placeholder:

    - package-ecosystem: ""   # See documentation for possible values

An empty package-ecosystem fails Dependabot's schema validation and GitHub
rejects the WHOLE file, so this config has never done anything. Deleting the
stub entry alone is not an option -- that would leave `updates: []`, which is
also invalid -- so the file goes.

Nothing that works today is lost: the config is provably inert. If Dependabot
is wanted here later, add a real entry with a groups: block, matching the 338
estate repos that already have a valid config.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
@sonarqubecloud

Copy link
Copy Markdown

@hyperpolymath
hyperpolymath merged commit 44d24f8 into main Jul 21, 2026
9 of 12 checks passed
@hyperpolymath
hyperpolymath deleted the fix/dependabot-remove-template-stub branch July 21, 2026 12:18
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant