Skip to content

Commit 741e2ce

Browse files
fix(ci): remove placeholder entry blocking Dependabot (#66)
This `dependabot.yml` carries GitHub's **unedited placeholder** alongside a real, correct entry: ```yaml - package-ecosystem: "" # See documentation for possible values ``` An empty `package-ecosystem` fails Dependabot's schema validation, and GitHub rejects the **whole file** — not just the bad entry. So the real `github-actions` entry has never run either. ### Measured, not assumed The three estate repos in exactly this state have **0 Dependabot PRs between them**, while comparable repos with valid configs have plenty: | repo | config | Dependabot PRs | |---|---|---| | `blocky-writer` | stub + real entry | **0** | | `jtv-lang` | stub + real entry | **0** | | `lcb-website` | stub + real entry | **0** | | `aerie` | valid | 7 | | `standards` | valid | 8 | | `affinescript` | valid | 16 | | `hypatia` | valid | 63 | All three do have a populated `.github/workflows/`, so there is genuinely something for `github-actions` to update. ### Fix Excise the stub block. The real entry is untouched and becomes live. Where an entry lacked a `groups:` block it gains one, so an ecosystem-wide bump arrives as **one** PR instead of one per dependency. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 841538e commit 741e2ce

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

.github/dependabot.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@
55

66
version: 2
77
updates:
8-
- package-ecosystem: "" # See documentation for possible values
9-
directory: "/" # Location of package manifests
10-
schedule:
11-
interval: "details"
12-
138
- package-ecosystem: "github-actions"
149
directory: "/"
1510
schedule:
1611
interval: "weekly"
12+
# Batch this ecosystem into a single PR. Ungrouped, Dependabot
13+
# opens one PR per dependency, and each PR re-fires every
14+
# workflow in the repo.
15+
groups:
16+
github-actions:
17+
patterns:
18+
- "*"

0 commit comments

Comments
 (0)