mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2024-11-28 11:38:38 +03:00
65 lines
1.6 KiB
YAML
65 lines
1.6 KiB
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"
|
|
labels:
|
|
- dependencies
|
|
- python
|
|
- "Changed"
|
|
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: "-"
|
|
reviewers:
|
|
- "emlowe"
|
|
- "altendky"
|
|
|
|
# Maintain dependencies for GitHub Actions
|
|
- package-ecosystem: "github-actions"
|
|
directory: "/"
|
|
# Check for updates once a week
|
|
schedule:
|
|
interval: "weekly"
|
|
day: "tuesday"
|
|
labels:
|
|
- dependencies
|
|
- github_actions
|
|
- "Changed"
|
|
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: "-"
|
|
reviewers:
|
|
- "cmmarslender"
|
|
- "altendky"
|
|
|
|
- package-ecosystem: "npm"
|
|
directory: "/"
|
|
# Check for updates once a week
|
|
schedule:
|
|
interval: "weekly"
|
|
day: "tuesday"
|
|
labels:
|
|
- dependencies
|
|
- javascript
|
|
- "Changed"
|
|
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: "-"
|
|
reviewers:
|
|
- "cmmarslender"
|
|
- "paninaro"
|