From 7ae822f115ce3e39e9c0e09eddace5f29c00f36c Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Tue, 17 Jun 2025 19:10:49 +0000 Subject: [PATCH] trigger ci only on daily cron instead of on every push --- .drone.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.drone.yml b/.drone.yml index df53194..af57ac9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -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