From afed356f41dab6f38d4dcba5f000562211842309 Mon Sep 17 00:00:00 2001 From: Ryan Baxter Date: Wed, 15 Jul 2026 09:41:31 -0400 Subject: [PATCH] Ignore release train workflow files in Dependabot Dependabot was opening GitHub Actions update PRs for release train workflow files that are auto-generated and not intended for direct dependency maintenance. Adding exclude-paths prevents noisy update churn for those generated workflows. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .github/dependabot.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 1c2601b51..5d3bfb830 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,6 +3,9 @@ updates: - package-ecosystem: "github-actions" directory: "/" target-branch: "main" + exclude-paths: + - ".github/workflows/release-train-test.yml" + - ".github/workflows/release-train-build.yml" schedule: interval: "weekly" - package-ecosystem: maven