From 528954fab1b270c167e8be8276d15a5a79f16989 Mon Sep 17 00:00:00 2001 From: Kirill Anisimov Date: Wed, 20 May 2026 15:04:01 +0700 Subject: [PATCH 1/3] IGNITE-28703 Activate Dependabot with proper ignore configuration --- .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 0000000000000..26a5a348278b9 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,22 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file +version: 2 +updates: + - package-ecosystem: "maven" + directory: "/" + schedule: + interval: "daily" + open-pull-requests-limit: 5 + ignore: + - dependency-name: "org.apache.calcite:calcite-core" + - dependency-name: "org.apache.calcite:calcite-linq4j" + - dependency-name: "org.apache.calcite.avatica:avatica-core" + + - dependency-name: "org.springframework:*" + - dependency-name: "org.springframework.*:*" + + - dependency-name: "junit:junit" + + - dependency-name: "com.h2database:h2" \ No newline at end of file From 984dcbc5f1ba32af7ab8854025db797b68a4d817 Mon Sep 17 00:00:00 2001 From: Kirill Anisimov Date: Tue, 26 May 2026 12:18:17 +0700 Subject: [PATCH 2/3] IGNITE-28703 Change the interval and the limit of open PR --- .github/dependabot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 26a5a348278b9..c2c00656998d6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,8 +7,8 @@ updates: - package-ecosystem: "maven" directory: "/" schedule: - interval: "daily" - open-pull-requests-limit: 5 + interval: "weekly" + open-pull-requests-limit: 3 ignore: - dependency-name: "org.apache.calcite:calcite-core" - dependency-name: "org.apache.calcite:calcite-linq4j" From f1f52e478c43fbe4a609a8042e5814cc0ad550c9 Mon Sep 17 00:00:00 2001 From: Kirill Anisimov Date: Wed, 27 May 2026 12:15:01 +0700 Subject: [PATCH 3/3] IGNITE-28703 Add cooldown 10 days to Dependabot config --- .github/dependabot.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c2c00656998d6..64735754aed6e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,6 +9,8 @@ updates: schedule: interval: "weekly" open-pull-requests-limit: 3 + cooldown: + deafult-days: 10 ignore: - dependency-name: "org.apache.calcite:calcite-core" - dependency-name: "org.apache.calcite:calcite-linq4j"