diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..0239ae2 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,33 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + # GitHub Actions + - package-ecosystem: github-actions + directory: / + groups: + github-actions: + patterns: + - '*' # Group all Actions updates into a single larger pull request + schedule: + interval: weekly + + # npm - pnpm + - package-ecosystem: 'npm' + directory: '/' + target-branch: 'main' + labels: + - 'dependabot :robot:' + schedule: + interval: 'daily' + groups: + deps: + applies-to: version-updates + patterns: + - '*' + update-types: + - 'minor' + - 'patch'