You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@helix.apache.org by ji...@apache.org on 2021/01/13 21:13:37 UTC

[helix] branch master updated: Make the CI test run regularly. (#1612)

This is an automated email from the ASF dual-hosted git repository.

jiajunwang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/helix.git


The following commit(s) were added to refs/heads/master by this push:
     new 9ff7b2e  Make the CI test run regularly. (#1612)
9ff7b2e is described below

commit 9ff7b2e90e755588d7eb883848332c78a02d5887
Author: Jiajun Wang <jj...@linkedin.com>
AuthorDate: Wed Jan 13 13:13:31 2021 -0800

    Make the CI test run regularly. (#1612)
    
    Make the CI test run for the master branch every 12 hours even with no code pushed.
---
 .github/workflows/Helix-CI.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.github/workflows/Helix-CI.yml b/.github/workflows/Helix-CI.yml
index 057e894..aa4ff40 100644
--- a/.github/workflows/Helix-CI.yml
+++ b/.github/workflows/Helix-CI.yml
@@ -4,6 +4,8 @@ name: Helix Merge CI
 on:
   push:
     branches: [ master ]
+  schedule:
+    - cron: '0 */12 * * *'
 
 jobs:
   Merge_PR_CI: