From 4555392af52d76d1dbb33fd19f18440abfc1f30f Mon Sep 17 00:00:00 2001 From: Kent 'picat' Gruber Date: Thu, 29 Jul 2021 10:52:25 -0400 Subject: [PATCH 1/3] Add initial Dependabot configuration --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000000..8a46b1d526c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,10 @@ +version: 2 +updates: +- package-ecosystem: gomod + directory: "/" + schedule: + interval: daily +- package-ecosystem: npm + directory: "/ui" + schedule: + interval: daily \ No newline at end of file From f05e92562e6f9f5275bdf9fbc930eebd92f0f572 Mon Sep 17 00:00:00 2001 From: Kent 'picat' Gruber Date: Thu, 29 Jul 2021 11:03:26 -0400 Subject: [PATCH 2/3] Add configuration for `/website` using NPM --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8a46b1d526c..2a391771ffb 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,5 +6,9 @@ updates: interval: daily - package-ecosystem: npm directory: "/ui" + schedule: + interval: daily +- package-ecosystem: npm + directory: "/website" schedule: interval: daily \ No newline at end of file From 0d96ac37483bdf399782cc68f9ce17145da4b55a Mon Sep 17 00:00:00 2001 From: Kent 'picat' Gruber Date: Fri, 3 Sep 2021 08:43:05 -0400 Subject: [PATCH 3/3] Add configuration for `/api` using Go modules --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 2a391771ffb..a22018e9a42 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,6 +4,10 @@ updates: directory: "/" schedule: interval: daily +- package-ecosystem: gomod + directory: "/api" + schedule: + interval: daily - package-ecosystem: npm directory: "/ui" schedule: