krz/nfogen

A scene-style ASCII .nfo generator.

clone: git clone https://gitbay.org/krz/nfogen.git

232b9e87bd510f209849278a858a726c78b6a365

verified · cmc

author: Christian Cleberg <hello@cleberg.net> · 2026-08-23T01:36:09Z

Point dependabot at actions, not a uv manifest that does not exist

It was configured for the uv ecosystem, but nfogen is a single stdlib script
with no pyproject or lock, so it tracked nothing and opened no PRs.
 .github/dependabot.yml | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 3bfe00c..e053bc4 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -5,7 +5,10 @@
 
 version: 2
 updates:
-  - package-ecosystem: "uv" # See documentation for possible values
-    directory: "/" # Location of package manifests
+  # No Python ecosystem entry: nfogen is a single stdlib script with no
+  # manifest, so the previous "uv" entry tracked nothing. Actions are the only
+  # thing here with versions to bump.
+  - package-ecosystem: "github-actions"
+    directory: "/"
     schedule:
       interval: "weekly"