This is an automated email from the ASF dual-hosted git repository. rzo1 pushed a commit to branch dependabot-2.x-coverage in repository https://gitbox.apache.org/repos/asf/storm.git
commit efd1b4c05c7f1b273741cdc5b15c1f5f9577d6fe Author: Richard Zowalla <[email protected]> AuthorDate: Sun May 10 19:23:39 2026 +0200 Run Dependabot against the 2.x maintenance branch Dependabot reads dependabot.yml only from the repository's default branch, so picking up the 2.x branch requires duplicating the ecosystem entries here with target-branch: "2.x". The new entries mirror the existing ones for /examples (maven), / (maven), /storm-webapp (npm), and / (github-actions). --- .github/dependabot.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0ed2b0087..ebd96e461 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -17,6 +17,7 @@ version: 2 updates: + # --- default branch (master) --- - package-ecosystem: maven directory: "/examples" schedule: @@ -42,3 +43,34 @@ updates: directory: "/" schedule: interval: "daily" + + # --- 2.x maintenance branch --- + - package-ecosystem: maven + directory: "/examples" + target-branch: "2.x" + schedule: + interval: monthly + time: '04:00' + open-pull-requests-limit: 20 + + - package-ecosystem: maven + directory: "/" + target-branch: "2.x" + schedule: + interval: monthly + time: '04:00' + open-pull-requests-limit: 20 + + - package-ecosystem: npm + directory: "/storm-webapp" + target-branch: "2.x" + schedule: + interval: monthly + time: '04:00' + open-pull-requests-limit: 20 + + - package-ecosystem: "github-actions" + directory: "/" + target-branch: "2.x" + schedule: + interval: "daily"
