From 0ae271d51e35ee9e22e6ad924a7451c159d106f3 Mon Sep 17 00:00:00 2001 From: Trask Stalnaker Date: Fri, 4 Nov 2022 14:45:42 -0700 Subject: [PATCH] Fix dependabot (#7050) it fails when directories do not have a gradle build file in them --- .github/dependabot.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index df528e23f3..4ecb8ff7a2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -33,7 +33,16 @@ updates: - package-ecosystem: "gradle" # need to scope gradle dependency updates down in this repo because most of the instrumentations # intentionally test against old library versions - directory: "/examples" + directory: "/examples/distro" + rebase-strategy: "disabled" + schedule: + interval: "daily" + open-pull-requests-limit: 10 + + - package-ecosystem: "gradle" + # need to scope gradle dependency updates down in this repo because most of the instrumentations + # intentionally test against old library versions + directory: "/examples/extension" rebase-strategy: "disabled" schedule: interval: "daily"