From ae10462e4685e6e78070fd10f642e54af030c7e7 Mon Sep 17 00:00:00 2001 From: Amanda Tarafa Mas Date: Mon, 9 Aug 2021 11:52:01 +0100 Subject: [PATCH] build: Ignore dependecy updates for apps that need modernization. - #992 tracks Bigtable samples modernization. - #1004 tracks AppEngine samples modernization. - #1426 tracks Endpoints samples modernizaton. - #1427 trackes Google Home samples modernization. Closes #1434 Closes #1430 --- .github/renovate.json | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index fff4171e536..2e06c9e50a8 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,7 +1,15 @@ { - "extends": [ - "config:base" - ], - "schedule": ["before 8am"], - "timezone": "Europe/London" + "extends": [ + "config:base" + ], + "ignorePaths": [ + "bigtable/api/**", + "appengine/flexible/**", + "endpoints/getting-started/**", + "applications/googlehome-meets-dotnetcontainers/**" + ], + "schedule": [ + "before 8am" + ], + "timezone": "Europe/London" }