From d5e9e7d639b2249f353c19b4bb340766ad10e11d Mon Sep 17 00:00:00 2001 From: Trask Stalnaker Date: Thu, 22 Sep 2022 02:33:10 -0700 Subject: [PATCH] Disable dependabot rebasing (#6705) Because our build takes a long time, and most of the time rebasing is not required. We can always manually request `@dependabot rebase` if it is needed due to conflicts. --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 450840c5e2..f06d10da45 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,18 +8,22 @@ registries: updates: - package-ecosystem: "github-actions" directory: "/" + rebase-strategy: "disabled" schedule: interval: "daily" - package-ecosystem: "gradle" directory: "/dependencyManagement" + rebase-strategy: "disabled" schedule: interval: "daily" - package-ecosystem: "gradle" directory: "/conventions" + rebase-strategy: "disabled" schedule: interval: "daily" - package-ecosystem: "gradle" directory: "/gradle-plugins" + rebase-strategy: "disabled" schedule: interval: "daily" - package-ecosystem: "gradle" @@ -28,5 +32,6 @@ updates: - dependency-name: "com.gradle*" registries: - gradle-plugin-portal + rebase-strategy: "disabled" schedule: interval: "daily"