Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add python, modelscan and workflow dirs to dependabot config #1735

Merged
merged 4 commits into from
Jan 22, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 30 additions & 16 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,45 +7,59 @@ updates:
- package-ecosystem: 'npm'
# Look for `package.json` and `lock` files in the `root` directory
directory: '/'
# Check the npm registry for updates every day (weekdays)
# Check the npm registry for updates every month
schedule:
interval: 'monthly'
versioning-strategy: increase
# Allow up to 1 open pull requests for node dependencies
# Allow up to 15 open pull requests for node dependencies
open-pull-requests-limit: 15
- package-ecosystem: 'npm'
# Look for `package.json` and `lock` files in the `root` directory
directory: '/frontend'
# Check the npm registry for updates every day (weekdays)
# Check the npm registry for updates every month
schedule:
interval: 'monthly'
versioning-strategy: increase
# Allow up to 1 open pull requests for node dependencies
# Allow up to 2 open pull requests for node dependencies
open-pull-requests-limit: 2
- package-ecosystem: 'npm'
# Look for `package.json` and `lock` files in the `root` directory
directory: '/backend'
# Check the npm registry for updates every day (weekdays)
# Check the npm registry for updates every month
schedule:
interval: 'monthly'
versioning-strategy: increase
# Allow up to 1 open pull requests for node dependencies
# Allow up to 15 open pull requests for node dependencies
open-pull-requests-limit: 15

# Enable version updates for Docker
- package-ecosystem: 'docker'
# Look for a `Dockerfile` in the `root` directory
directory: '/frontend'
# Look for a `Dockerfile` in these directories
directories:
- '/'
- '/backend'
- '/frontend'
- '/lib/modelscan_api'
# Check for updates once a week
schedule:
interval: 'weekly'
# Allow up to 3 open pull requests for docker dependencies
open-pull-requests-limit: 3
- package-ecosystem: 'docker'
# Look for a `Dockerfile` in the `root` directory
directory: '/backend'
# Check for updates once a week
open-pull-requests-limit: 9

# Enable version updates for python
- package-ecosystem: 'pip'
# Look for a `requirements*` or `pyproject.toml` in these directories
directories:
- '/lib/python'
- '/lib/modelscan_api'
- '/backend/docs'
schedule:
interval: 'weekly'
# Allow up to 3 open pull requests for docker dependencies
open-pull-requests-limit: 3
versioning-strategy: increase
open-pull-requests-limit: 6

# Set update schedule for GitHub Actions
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'monthly'
open-pull-requests-limit: 12
Loading