trigger ci only on daily cron instead of on every push

This commit is contained in:
Viktor Barzin 2025-06-17 19:10:49 +00:00
parent 92c1ee76f5
commit 7ae822f115
No known key found for this signature in database
GPG key ID: 4056458DBDBF8863

View file

@ -2,6 +2,12 @@ kind: pipeline
type: kubernetes
name: frontend
trigger:
event:
- cron
cron:
- nightly # only daily builds; don't build on push
steps:
- name: Build frontend image
image: plugins/docker
@ -24,6 +30,12 @@ kind: pipeline
type: kubernetes
name: api
trigger:
event:
- cron
cron:
- nightly # only daily builds; don't build on push
steps:
- name: Build backend API image
image: plugins/docker