From 4e7cc3f686d194cd6f48bdf2131b344cef9708ae Mon Sep 17 00:00:00 2001 From: Matthew Pilot Date: Tue, 2 Jun 2026 20:14:11 +0000 Subject: [PATCH] fix(runtime): add dependabot config for gomod and github-actions (PILOT-368) Add .github/dependabot.yml with weekly gomod and github-actions update schedules, per the repo hygiene parent task PILOT-162. Note: .github/workflows/notify-canary.yml is not included because .github/workflows/** is in the agent paths_denied list. That part requires operator or Hank to create separately. Closes PILOT-368 --- .github/dependabot.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..63a32a2 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,22 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" + day: "monday" + time: "09:00" + timezone: "UTC" + open-pull-requests-limit: 5 + labels: + - "dependencies" + - "go" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 5 + labels: + - "dependencies" + - "ci"