forked from elastic/elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
77 lines (77 loc) · 2.09 KB
/
Copy pathrenovate.json
File metadata and controls
77 lines (77 loc) · 2.09 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"github>elastic/renovate-config:base",
"github>elastic/renovate-config:ci-agent-images"
],
"schedule": [
"after 1pm on tuesday"
],
"labels": [
">non-issue",
":Delivery/Packaging",
":Delivery/Build",
"Team:Core/Infra",
"auto-merge-without-approval"
],
"ignorePaths": [
"x-pack/qa/repository-old-versions-compatibility/src/javaRestTest/resources/README.md",
"docs/**",
"build-tools-internal/gradle/wrapper/**",
"plugins/examples/gradle/wrapper/**"
],
"packageRules": [
{
"description": "Don't manage dependencies by default",
"matchPackageNames": [
"*"
],
"enabled": false
},
{
"description": "Explicitly enable Elastic Docker updates",
"matchPackageNames": [
"/docker.elastic.co/.*/"
],
"enabled": true
},
{
"description": "Gradle wrapper: one rolling PR per release train (e.g. 9.5.x patch lane and 9.6.x minor/RC lane). Only the root gradle/wrapper/gradle-wrapper.properties is managed via managerFilePatterns; build-tools-internal and plugins/examples wrappers are kept in sync manually via ./gradlew wrapper. respectLatest: false lets the same PR keep rolling forward through Gradle RCs/milestones until GA.",
"matchManagers": [
"gradle-wrapper"
],
"matchBaseBranches": [
"main"
],
"enabled": true,
"ignoreUnstable": false,
"respectLatest": false,
"separateMinorPatch": true,
"automerge": false,
"rebaseWhen": "behind-base-branch",
"branchTopic": "gradle-wrapper-{{{newMajor}}}.{{{newMinor}}}.{{{newPatch}}}",
"commitMessageTopic": "Gradle wrapper {{{newMajor}}}.{{{newMinor}}}.{{{newPatch}}}",
"schedule": [
"at any time"
],
"labels": [
":Delivery/Build",
">non-issue",
"auto-backport"
]
}
],
"baseBranchPatterns": [
"main",
"9.5",
"9.4",
"9.3",
"8.19"
],
"baseBranches": [
"main",
"9.5",
"9.4",
"8.19"
]
}