summaryrefslogtreecommitdiffstats
path: root/.github/dependabot.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/dependabot.yml')
-rw-r--r--.github/dependabot.yml33
1 files changed, 20 insertions, 13 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 9695146..9394d8b 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -3,26 +3,33 @@
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
+# Basic set up for three package managers
+
version: 2
updates:
- - package-ecosystem: "github-actions"
+ # Maintain dependencies for Python
+ # Dependabot supports updates to pyproject.toml files
+ # if they follow the PEP 621 standard.
+ - package-ecosystem: "pip"
directory: "/"
- labels:
- - dependabot
schedule:
- interval: "weekly"
+ interval: "daily"
+ reviewers:
+ - "titom73"
+ labels:
+ - 'dependencies'
+ pull-request-branch-name:
+ separator: "/"
commit-message:
- prefix: "bump"
- include: "ci"
- open-pull-requests-limit: 10
- - package-ecosystem: "pip"
+ prefix: "bump: "
+ # Maintain dependencies for GitHub Actions
+ - package-ecosystem: "github-actions"
directory: "/"
- labels:
schedule:
interval: "weekly"
+ reviewers:
+ - "titom73"
labels:
- - dependabot
+ - 'CI'
commit-message:
- prefix: "bump"
- include: "requirements"
- open-pull-requests-limit: 10
+ prefix: "ci: "