File tree Expand file tree Collapse file tree 3 files changed +20
-4
lines changed Expand file tree Collapse file tree 3 files changed +20
-4
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " https://docs.renovatebot.com/renovate-schema.json" ,
3
+ "extends" : [
4
+ " github>openshift/boilerplate//.github/renovate.json"
5
+ ]
6
+ }
Original file line number Diff line number Diff line change @@ -8,8 +8,13 @@ metadata:
8
8
build.appstudio.redhat.com/target_branch : ' {{target_branch}}'
9
9
pipelinesascode.tekton.dev/cancel-in-progress : " true"
10
10
pipelinesascode.tekton.dev/max-keep-runs : " 3"
11
- pipelinesascode.tekton.dev/on-cel-expression : event == "pull_request" && target_branch
12
- == "master"
11
+ pipelinesascode.tekton.dev/on-cel-expression : |
12
+ event == "pull_request"
13
+ && target_branch == "master"
14
+ && ("**/*.go".pathChanged() ||
15
+ "**/go.*".pathChanged() ||
16
+ "build/Dockerfile".pathChanged() ||
17
+ ".tekton/gcp-project-operator-pull-request.yaml".pathChanged() )
13
18
creationTimestamp : null
14
19
labels :
15
20
appstudio.openshift.io/application : gcp-project-operator
Original file line number Diff line number Diff line change @@ -7,8 +7,13 @@ metadata:
7
7
build.appstudio.redhat.com/target_branch : ' {{target_branch}}'
8
8
pipelinesascode.tekton.dev/cancel-in-progress : " false"
9
9
pipelinesascode.tekton.dev/max-keep-runs : " 3"
10
- pipelinesascode.tekton.dev/on-cel-expression : event == "push" && target_branch
11
- == "master"
10
+ pipelinesascode.tekton.dev/on-cel-expression : |
11
+ event == "push"
12
+ && target_branch == "master"
13
+ && ("**/*.go".pathChanged() ||
14
+ "**/go.*".pathChanged() ||
15
+ "build/Dockerfile".pathChanged() ||
16
+ ".tekton/gcp-project-operator-push.yaml".pathChanged() )
12
17
creationTimestamp : null
13
18
labels :
14
19
appstudio.openshift.io/application : gcp-project-operator
You can’t perform that action at this time.
0 commit comments