Skip to content

Commit 4d50111

Browse files
funsaizedclaude
andauthored
fix: set valid package-ecosystem values in dependabot.yml (#1)
The stock template was committed with package-ecosystem left empty, which Dependabot rejects when parsing the config. Track the two ecosystems present in the repo: GitHub Actions workflows and the npm packages in site/. Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1 parent 92c3e24 commit 4d50111

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

.github/dependabot.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
# To get started with Dependabot version updates, you'll need to specify which
2-
# package ecosystems to update and where the package manifests are located.
3-
# Please see the documentation for all configuration options:
1+
# Dependabot configuration
42
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
53

64
version: 2
75
updates:
8-
- package-ecosystem: "" # See documentation for possible values
9-
directory: "/" # Location of package manifests
6+
- package-ecosystem: "github-actions"
7+
directory: "/"
8+
schedule:
9+
interval: "weekly"
10+
11+
- package-ecosystem: "npm"
12+
directory: "/site"
1013
schedule:
1114
interval: "weekly"

0 commit comments

Comments
 (0)