Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions prow/oss/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,16 @@ tide:
- do-not-merge/invalid-owners-file
- do-not-merge/work-in-progress
- needs-rebase
- author: google-oss-robot
labels: # google-oss-robot should only create autobump PR with this label
- skip-review
missingLabels:
- do-not-merge
- do-not-merge/hold
- do-not-merge/invalid-owners-file
- do-not-merge/work-in-progress
repos:
- GoogleCloudPlatform/oss-test-infra

plank:
job_url_prefix_config:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ postsubmits:
defaultMode: 0400

periodics:
- cron: "05 15-23 * * 1-5" # Run at 7:05-15:05 PST (15:05 UTC) Mon-Fri
- cron: "30 * * * 1-5" # Bump don't label `skip-review`. Run at :30 past every hour Mon-Fri
name: ci-oss-test-infra-autobump-prow
cluster: test-infra-trusted
decorate: true
Expand Down Expand Up @@ -366,6 +366,41 @@ periodics:
secret:
secretName: google-oss-robot-ssh-keys
defaultMode: 0400
- cron: "05 17 * * 1-5" # Bump with label `skip-review`. Run at 10:05 PST (17:05 UTC) Mon-Fri
name: ci-oss-test-infra-autobump-prow-for-auto-deploy
cluster: test-infra-trusted
decorate: true
extra_refs:
- org: GoogleCloudPlatform
repo: oss-test-infra
base_ref: master
annotations:
testgrid-dashboards: googleoss-test-infra
testgrid-tab-name: autobump-prow-for-auto-deploy
testgrid-alert-email: k8s-infra-oncall@google.com
testgrid-num-failures-to-alert: '1'
spec:
containers:
- image: gcr.io/k8s-prow/generic-autobumper:v20210515-9461f01d36
command:
- /app/prow/cmd/generic-autobumper/app.binary
args:
- --config=prow/oss/oss-autobump-config.yaml
- --labels-override=skip-review # This label is used by tide for identifying trusted PR
volumeMounts:
- name: github
mountPath: /etc/github-token
readOnly: true
- name: ssh
mountPath: /root/.ssh
volumes:
- name: github
secret:
secretName: oauth-token
- name: ssh
secret:
secretName: google-oss-robot-ssh-keys
defaultMode: 0400
- cron: "05 15-23 * * 1-5" # Run at 7:05-15:05 PST (15:05 UTC) Mon-Fri
name: testgrid-canary-autobump
cluster: test-infra-trusted
Expand Down