-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathdependabot.yml
49 lines (48 loc) · 1.28 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
46
47
48
version: 2
updates:
- package-ecosystem: gomod
directory: /acceptance-tests
schedule:
# Check for updates every weekday
interval: "daily"
time: "06:00"
timezone: "Europe/Berlin"
# Allow only 1 open pull requests for gomod to prevent parallel concourse runs
open-pull-requests-limit: 1
labels:
- run-ci
- package-ecosystem: pip
directory: /ci/scripts
schedule:
# Check for updates every weekday
interval: "daily"
time: "12:00"
timezone: "Europe/Berlin"
# Allow only 1 open pull requests for pip to prevent parallel concourse runs
open-pull-requests-limit: 1
labels:
- run-ci
- package-ecosystem: gomod
directory: /acceptance-tests
target-branch: "maintenance"
schedule:
# Check for updates every weekday
interval: "daily"
time: "06:00"
timezone: "Europe/Berlin"
# Allow only 1 open pull requests for gomod to prevent parallel concourse runs
open-pull-requests-limit: 1
labels:
- run-ci
- package-ecosystem: pip
directory: /ci/scripts
target-branch: "maintenance"
schedule:
# Check for updates every weekday
interval: "daily"
time: "12:00"
timezone: "Europe/Berlin"
# Allow only 1 open pull requests for pip to prevent parallel concourse runs
open-pull-requests-limit: 1
labels:
- run-ci