From 28a551535bc8be757f126a1dad860380116e642e Mon Sep 17 00:00:00 2001 From: "Aaron K. Clark" Date: Tue, 19 May 2026 04:16:07 -0500 Subject: [PATCH] docs(dependabot): header comment says "Two ecosystems" but the config tracks three MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The header comment in `.github/dependabot.yml` opens with: # Two ecosystems get watched: # 1. npm — the production + dev tree in package.json. # 2. github-actions — workflow action versions in .github/workflows/. # 3. docker — base images in Dockerfile / docker-compose.yml. …then lists three. The docker ecosystem was added in a later commit and the leading count never got updated. One-character fix. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 352f077..925fa72 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,7 +4,7 @@ # Dependabot configuration. Automates dependency updates so the # `npm audit` CI gate doesn't surprise us at release time. # -# Two ecosystems get watched: +# Three ecosystems get watched: # 1. npm — the production + dev tree in package.json. # 2. github-actions — workflow action versions in .github/workflows/. # 3. docker — base images in Dockerfile / docker-compose.yml.