32 lines
946 B
YAML
32 lines
946 B
YAML
# Basic dependabot.yml file with
|
|
# minimum configuration for two package managers
|
|
|
|
version: 2
|
|
updates:
|
|
# Enable version updates for Python
|
|
- package-ecosystem: "pip"
|
|
# Look for a `Dockerfile` in the `root` directory
|
|
directory: "/"
|
|
# Check for updates once a week
|
|
schedule:
|
|
interval: "weekly"
|
|
day: "tuesday"
|
|
target-branch: "main"
|
|
pull-request-branch-name:
|
|
# Separate sections of the branch name with a hyphen
|
|
# for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1`
|
|
separator: "-"
|
|
|
|
# Maintain dependencies for GitHub Actions
|
|
- package-ecosystem: "github-actions"
|
|
directory: "/"
|
|
# Check for updates once a week
|
|
schedule:
|
|
interval: "weekly"
|
|
day: "tuesday"
|
|
target-branch: "main"
|
|
pull-request-branch-name:
|
|
# Separate sections of the branch name with a hyphen
|
|
# for example, `dependabot-npm_and_yarn-next_js-acorn-6.4.1`
|
|
separator: "-"
|