From 6a74a00f57db1a4c618352682547cb901522c5ef Mon Sep 17 00:00:00 2001 From: Andrew Seigner Date: Tue, 3 May 2022 23:21:04 +0000 Subject: [PATCH 1/2] Introduce dependabot Signed-off-by: Andrew Seigner --- .github/dependabot.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..c4045f0 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,17 @@ +# Dependabot are scheduled to avoid contention with normal workday CI usage. We +# start running updates at 3AM UTC (7PM PST, 8AM IST) +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "daily" + time: "03:00" + timezone: "UTC" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + time: "04:00" + timezone: "UTC" From 51aedc01af6e92f74e2b279db0e508bc2e1d5ca8 Mon Sep 17 00:00:00 2001 From: Andrew Seigner Date: Fri, 6 May 2022 21:08:13 +0000 Subject: [PATCH 2/2] ignore browser updates Signed-off-by: Andrew Seigner --- .github/dependabot.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c4045f0..29053b6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,6 +8,8 @@ updates: interval: "daily" time: "03:00" timezone: "UTC" + ignore: + - dependency-name: "github.com/pkg/browser" - package-ecosystem: "github-actions" directory: "/"