From 9bc3ad5159593a52a7ac001f76d50a769b261be5 Mon Sep 17 00:00:00 2001 From: Elliot DeNolf Date: Wed, 14 Aug 2024 21:17:01 -0400 Subject: [PATCH] chore: add dependabot.yml --- .github/dependabot.yml | 45 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000000..99f2e927ef --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,45 @@ +# docs: https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates + +version: 2 +updates: + - package-ecosystem: github-actions + directory: / + target-branch: beta + schedule: + interval: monthly + timezone: US/Michigan + time: '6:00' + groups: + github_actions: + patterns: + - '*' + versioning-strategy: increase + + - package-ecosystem: npm + directory: / + target-branch: beta + schedule: + interval: weekly + day: sunday + timezone: US/Michigan + time: '6:00' + commit-message: + prefix: 'chore(deps)' + labels: + - dependencies + groups: + production: + dependency-type: production + update-types: + - minor + - patch + patterns: + - '*' + dev: + dependency-type: development + update-types: + - minor + - patch + patterns: + - '*' + versioning-strategy: widen