From deaa864997720ea24f5f6ebe075d43fb1fba33fc Mon Sep 17 00:00:00 2001 From: John McBride Date: Tue, 22 Aug 2023 15:13:03 -0600 Subject: [PATCH] feat: Create `dependabot.yml This creates a dependabot yaml that can automagically pick up cargo updates --- .github/dependabot.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..e87590c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,9 @@ +# See the documentation for all configuration options: +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "weekly"