From 4510237d99cff9db471843c30aff86f280ae9218 Mon Sep 17 00:00:00 2001 From: Kent 'picat' Gruber Date: Thu, 29 Jul 2021 11:48:46 -0400 Subject: [PATCH 1/4] Add initial Dependabot configuration --- .github/dependabot.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..a22018e9a --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,18 @@ +version: 2 +updates: +- package-ecosystem: gomod + directory: "/" + schedule: + interval: daily +- package-ecosystem: gomod + directory: "/api" + schedule: + 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 688233f78c7320d96b8c2682a0297ca43b189e9b Mon Sep 17 00:00:00 2001 From: Kent 'picat' Gruber Date: Thu, 29 Jul 2021 17:35:48 -0400 Subject: [PATCH 2/4] Add the `/sdk` module --- .github/dependabot.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a22018e9a..25d528ff1 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,6 +8,10 @@ updates: directory: "/api" schedule: interval: daily +- package-ecosystem: gomod + directory: "/sdk" + schedule: + interval: daily - package-ecosystem: npm directory: "/ui" schedule: From 2a1fb53f68407c546394e537f974fe72bb5d9f35 Mon Sep 17 00:00:00 2001 From: Kent 'picat' Gruber Date: Thu, 29 Jul 2021 17:47:33 -0400 Subject: [PATCH 3/4] Add default `open-pull-requests-limit` for all updates Using the default value just to start with. --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 25d528ff1..edce1e3cf 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,22 +1,27 @@ version: 2 updates: - package-ecosystem: gomod + open-pull-requests-limit: 5 directory: "/" schedule: interval: daily - package-ecosystem: gomod + open-pull-requests-limit: 5 directory: "/api" schedule: interval: daily - package-ecosystem: gomod + open-pull-requests-limit: 5 directory: "/sdk" schedule: interval: daily - package-ecosystem: npm + open-pull-requests-limit: 5 directory: "/ui" schedule: interval: daily - package-ecosystem: npm + open-pull-requests-limit: 5 directory: "/website" schedule: interval: daily \ No newline at end of file From 05fb8dd1924135b9fe8513b86b1a504f645d2033 Mon Sep 17 00:00:00 2001 From: Kent 'picat' Gruber Date: Thu, 29 Jul 2021 17:51:32 -0400 Subject: [PATCH 4/4] Add `github-actions` --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index edce1e3cf..8fdc6c8ff 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -23,5 +23,10 @@ updates: - package-ecosystem: npm open-pull-requests-limit: 5 directory: "/website" + schedule: + interval: daily +- package-ecosystem: github-actions + open-pull-requests-limit: 5 + directory: / schedule: interval: daily \ No newline at end of file