2022-05-12 13:14:18 +00:00
|
|
|
# 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 `requirements` in the `root` directory
|
|
|
|
directory: "/requirements"
|
|
|
|
# Check for updates once a week
|
|
|
|
schedule:
|
|
|
|
interval: "weekly"
|
|
|
|
# Labels on pull requests for version updates only
|
|
|
|
labels:
|
|
|
|
- "ci"
|
|
|
|
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: "-"
|
2022-07-12 12:17:23 +00:00
|
|
|
# Allow up to 5 open pull requests for pip dependencies
|
2023-06-15 12:32:34 +00:00
|
|
|
open-pull-requests-limit: 10
|
2022-07-12 12:17:23 +00:00
|
|
|
reviewers:
|
|
|
|
- "Lightning-AI/teams/core-lightning"
|
|
|
|
|
|
|
|
# Enable version updates for GitHub Actions
|
|
|
|
- package-ecosystem: "github-actions"
|
|
|
|
directory: "/"
|
|
|
|
# Check for updates once a week
|
|
|
|
schedule:
|
2022-08-18 15:07:15 +00:00
|
|
|
interval: "weekly"
|
2022-07-12 12:17:23 +00:00
|
|
|
# Labels on pull requests for version updates only
|
|
|
|
labels:
|
|
|
|
- "ci"
|
|
|
|
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: "-"
|
|
|
|
# Allow up to 5 open pull requests for GitHub Actions
|
2023-06-15 12:32:34 +00:00
|
|
|
open-pull-requests-limit: 10
|
2022-05-12 13:14:18 +00:00
|
|
|
reviewers:
|
2022-06-15 23:33:43 +00:00
|
|
|
- "Lightning-AI/teams/core-lightning"
|