-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathdependabot.yml
More file actions
28 lines (27 loc) · 823 Bytes
/
dependabot.yml
File metadata and controls
28 lines (27 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
# Dependabot configuration
# Reference: https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
version: 2
updates:
- package-ecosystem: "github-actions" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
target-branch: "develop"
versioning-strategy: "lockfile-only"
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
target-branch: "develop"
versioning-strategy: "increase"
- package-ecosystem: "bundler"
directory: "/"
schedule:
interval: "daily"
target-branch: "develop"
versioning-strategy: "increase"