forked from intel/perfmon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependabot.yml
27 lines (25 loc) · 854 Bytes
/
dependabot.yml
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
# Dependabot version updates for packages used by perfmon tooling.
version: 2
updates:
# Enable version updates for Python packages.
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 1
ignore:
# Ignore patch updates (major.minor.patch) for all packages. This
# does not prevent security updates.
- dependency-name: "*"
update-types: ["version-update:semver-patch"]
# Enable version updates from GitHub Actions.
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
open-pull-requests-limit: 1
ignore:
# Ignore patch updates (major.minor.patch) for all packages. This
# does not prevent security updates.
- dependency-name: "*"
update-types: ["version-update:semver-patch"]