From c02da1c68209e08d991ef55e357897beb7807c82 Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Sun, 28 Aug 2022 19:16:33 +1000 Subject: [PATCH 1/2] Add dependabot Signed-off-by: Jiahao XU --- .github/dependabot.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..8bb64082 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +# Dependabot dependency version checks / updates + +version: 2 +updates: + - package-ecosystem: "github-actions" + # Workflow files stored in the + # default location of `.github/workflows` + directory: "/" + schedule: + interval: "daily" + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "daily" From 0a47de98594b0308952dc71273857f4a99da4ec7 Mon Sep 17 00:00:00 2001 From: Jiahao XU Date: Tue, 30 Aug 2022 22:48:21 +1000 Subject: [PATCH 2/2] Add `rebase-strategy: "disabled"` to dependabot Signed-off-by: Jiahao XU --- .github/dependabot.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 8bb64082..03194e2b 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,7 +8,9 @@ updates: directory: "/" schedule: interval: "daily" + rebase-strategy: "disabled" - package-ecosystem: "cargo" directory: "/" schedule: interval: "daily" + rebase-strategy: "disabled"