Browse Source

Add schedule for running helm workflow (#1522)

Ruslan Ibragimov 3 years ago
parent
commit
a24696cc30
1 changed files with 5 additions and 0 deletions
  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