-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependabot.yml
45 lines (42 loc) · 1.33 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# NatLibFi/Melinda maintenance strategy
# https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates
version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
time: "06:30"
timezone: "Europe/Helsinki"
target-branch: "next"
# Minor updates to npm production dependencies daily
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
time: "06:45"
timezone: "Europe/Helsinki"
versioning-strategy: lockfile-only
target-branch: "next"
pull-request-branch-name:
separator: "-"
groups:
production-dependencies:
dependency-type: "production"
development-dependencies:
dependency-type: "development"
# Major updates to npm dependencies weekly @tuesday
# Not possible yet https://github.com/dependabot/dependabot-core/issues/1778
# - package-ecosystem: "npm"
# directory: "/"
# schedule:
# interval: "weekly"
# day: "tuesday"
# time: "07:00"
# timezone: "Europe/Helsinki"
# versioning-strategy: increase-if-necessary
# labels:
# - "npm major dependencies"
# reviewers:
# - "natlibfi/melinda-js-lead"