add dependabot #1
Workflow file for this run
This file contains hidden or 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
| version: 2 | |
| updates: | |
| # Enable version updates for npm in root directory | |
| - package-ecosystem: "npm" | |
| directory: "/" | |
| schedule: | |
| interval: "weekly" | |
| open-pull-requests-limit: 10 | |
| versioning-strategy: "auto" | |
| labels: | |
| - "dependencies" | |
| - "security" | |
| groups: | |
| dev-dependencies: | |
| patterns: | |
| - "*" | |
| update-types: | |
| - "minor" | |
| - "patch" | |
| # Enable version updates for npm in ui directory | |
| - package-ecosystem: "npm" | |
| directory: "/ui" | |
| schedule: | |
| interval: "weekly" | |
| open-pull-requests-limit: 10 | |
| versioning-strategy: "auto" | |
| labels: | |
| - "dependencies" | |
| - "security" | |
| groups: | |
| dev-dependencies: | |
| patterns: | |
| - "*" | |
| update-types: | |
| - "minor" | |
| - "patch" | |
| # Also check for GitHub Actions updates | |
| - package-ecosystem: "github-actions" | |
| directory: "/" | |
| schedule: | |
| interval: "weekly" | |
| labels: | |
| - "dependencies" | |
| - "github-actions" |