From 474c25a529f3aae371a2f1c56793eac9202534e9 Mon Sep 17 00:00:00 2001 From: Michael Pursifull Date: Sun, 19 Apr 2026 00:32:11 -0500 Subject: [PATCH] chore(dependabot): emit type.deps + agent.bot labels MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Aligns Dependabot PR labels with the canonical ArcavenAE scheme defined in aae-orc/labels/schema.yaml. Replaces the legacy `dependencies` label with: - type.deps — canonical "kind of change" scope for dependency updates - agent.bot — canonical non-human origin (distinct from agent.worker for Claude Code agents and agent.envoy for envoys) Future Dependabot PRs will carry these two labels instead of `dependencies`. The legacy label can be deleted from the repo once no open PRs still reference it. --- .github/dependabot.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index bb0ce6d..1bbace0 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -11,12 +11,14 @@ updates: patterns: - "*" labels: - - "dependencies" + - "type.deps" + - "agent.bot" - package-ecosystem: gomod directory: / schedule: interval: daily labels: - - "dependencies" + - "type.deps" + - "agent.bot"