From 1a4e8917035bd1de6e804b83bf31c916c014a2b5 Mon Sep 17 00:00:00 2001 From: dougfabris Date: Wed, 11 Dec 2024 15:31:14 -0300 Subject: [PATCH] chore: Add dependabot workflow (#1498) --- .github/dependabot.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..3027f26c34 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,27 @@ +version: 2 +updates: + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + groups: + actions-deps: + patterns: + - "*" + + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "daily" + groups: + dev-deps: + dependency-type: "development" + update-types: + - "minor" + - "patch" + prod-deps: + dependency-type: "production" + update-types: + - "minor" + - "patch" \ No newline at end of file