浏览代码

Add schedule for running helm workflow (#1522)

Ruslan Ibragimov 3 年之前
父节点
当前提交
a24696cc30
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5 0
      .github/workflows/helm.yaml

+ 5 - 0
.github/workflows/helm.yaml

@@ -4,6 +4,11 @@ on:
     types: [ 'opened', 'edited', 'reopened', 'synchronize' ]
     paths:
       - "charts/**"
+
+  schedule:
+    # * is a special character in YAML so you have to quote this string
+    - cron:  '0 8 * * 3'
+
 jobs:
   build-and-test:
     runs-on: ubuntu-latest