-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #109 from Mindful-AI-Assistants/FabianaCampanari-p…
…atch-1 Update dependabot.yml
- Loading branch information
Showing
1 changed file
with
118 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,118 @@ | ||
version: 2 | ||
updates: | ||
|
||
# Configuração para dependências de Python (requirements.txt) | ||
- package-ecosystem: "pip" # Usa pip para gerenciar dependências | ||
directory: "/" # Diretório do projeto | ||
schedule: | ||
interval: "weekly" # Atualiza semanalmente | ||
commit-message: | ||
prefix: "fix" # Prefixo da mensagem de commit | ||
|
||
|
||
# Configuração para dependências de JavaScript (package.json) | ||
- package-ecosystem: "npm" | ||
directory: "/" # Diretório onde está o package.json | ||
schedule: | ||
interval: "weekly" # Verificações semanais | ||
commit-message: | ||
prefix: "fix" # Prefixo na mensagem de commit | ||
include: "scope" # Inclui o nome da dependência na mensagem | ||
versioning-strategy: "auto" # Estratégia de versão | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "bundler" | ||
directory: "/updater" | ||
schedule: | ||
interval: "weekly" | ||
day: "sunday" | ||
time: "16:00" | ||
groups: | ||
aws-sdk: | ||
patterns: | ||
- "aws-sdk-*" | ||
dev-dependencies: | ||
dependency-type: "development" | ||
update-types: | ||
- "minor" | ||
- "patch" | ||
|
||
- package-ecosystem: "composer" | ||
directory: "/composer/helpers/v1" | ||
schedule: | ||
interval: "weekly" | ||
day: "sunday" | ||
time: "16:00" | ||
groups: | ||
dev-dependencies: | ||
dependency-type: "development" | ||
update-types: | ||
- "minor" | ||
- "patch" | ||
- package-ecosystem: "composer" | ||
directory: "/composer/helpers/v2" | ||
schedule: | ||
interval: "weekly" | ||
day: "sunday" | ||
time: "16:00" | ||
groups: | ||
dev-dependencies: | ||
dependency-type: "development" | ||
update-types: | ||
- "minor" | ||
- "patch" | ||
- package-ecosystem: "docker" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
day: "sunday" | ||
time: "16:00" | ||
- package-ecosystem: "docker" | ||
directory: "/go_modules" | ||
schedule: | ||
interval: "weekly" | ||
day: "sunday" | ||
time: "16:00" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
day: "sunday" | ||
time: "16:00" | ||
- package-ecosystem: "gomod" | ||
directory: "/go_modules/helpers" | ||
schedule: | ||
interval: "weekly" | ||
day: "sunday" | ||
time: "16:00" | ||
- package-ecosystem: "mix" | ||
directory: "/hex/helpers" | ||
schedule: | ||
interval: "weekly" | ||
day: "sunday" | ||
time: "16:00" | ||
- package-ecosystem: "npm" | ||
directory: "/npm_and_yarn/helpers" | ||
schedule: | ||
interval: "weekly" | ||
day: "sunday" | ||
time: "16:00" | ||
groups: | ||
npm-dependencies: | ||
patterns: | ||
- "@npmcli/arborist" | ||
- "nock" | ||
- "npm" | ||
- "semver" | ||
exclude-patterns: | ||
- "detect-indent" | ||
yarn-dependencies: | ||
patterns: | ||
- "@dependabot/yarn-lib" | ||
pnpm-dependencies: | ||
patterns: | ||
- "@pnpm/lockfile-file" | ||
- "@pnpm/dependency-path" | ||
dev-dependencies: | ||
dependency-type: "development" | ||
update-types: | ||
- "minor" | ||
- "patch" | ||
ignore: | ||
- dependency-name: "npm" | ||
update-types: ["version-update:semver-major"] | ||
- package-ecosystem: "pip" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
- package-ecosystem: "pip" | ||
directory: "/python/helpers" | ||
schedule: | ||
interval: "weekly" | ||
day: "sunday" | ||
time: "16:00" | ||
- package-ecosystem: "pub" | ||
directory: "/pub/helpers" | ||
schedule: | ||
interval: "weekly" | ||
day: "sunday" | ||
time: "14:00" |