Run develop only once a day (#6927)

This commit is contained in:
Eugenio Romano
2021-04-15 14:43:07 +01:00
committed by GitHub
parent d18418d033
commit 882a3bd6d8

View File

@@ -41,16 +41,17 @@ branches:
stages: stages:
- name: Setup - name: Setup
if: branch != master AND (type = cron || type = pull_request) AND tag IS blank
- name: "Build lib" - name: "Build lib"
if: tag IS blank if: branch != master AND (type = cron || type = pull_request) AND tag IS blank
- name: "Check bundle" - name: "Check bundle"
if: type = push AND tag IS blank if: branch != master AND type = cron AND tag IS blank
- name: "Trigger Alpha ADF child build" - name: "Trigger Alpha ADF child build"
if: branch = develop AND type = cron if: branch = develop AND type = cron
- name: "Build" - name: "Build"
if: (branch != master AND type != cron AND tag IS blank) OR type = api if: branch != master AND (type = cron || type = pull_request) AND tag IS blank
- name: "e2e Test" - name: "e2e Test"
if: (branch != master AND type != cron AND tag IS blank) OR type = api if: branch != master AND (type = cron || type = pull_request) AND tag IS blank
- name: "Release tag" - name: "Release tag"
if: branch = master if: branch = master