From 23a75c7326c7eaed368bc012fc4cb2732e1c5392 Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Tue, 4 Aug 2026 09:38:59 -0600 Subject: [PATCH] ci: ensure dependabot updates do not invoke ci tests [citest_skip] dependabot updates are DoSing our ci tests - we have a limited number of github action jobs and a dependabot update can eat up all of those for several hours, causing problems for "real" PRs that we need testing for immediately. Instead, tell these updates to skip ci testing, and we will manually trigger specific roles/tests as needed when there is a dependabot update. see https://docs.github.com/en/code-security/reference/supply-chain-security/dependabot-options-reference#prefix for more information. Signed-off-by: Rich Megginson --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 72125286..e815864d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,4 +6,4 @@ updates: schedule: interval: monthly commit-message: - prefix: ci + prefix: "ci: [citest_skip] "