-
Notifications
You must be signed in to change notification settings - Fork 6
39 lines (37 loc) · 1.02 KB
/
cron.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Cron Workflows
on:
schedule:
- cron: '0 0 * * *'
jobs:
v1-lts:
runs-on: ubuntu-latest
steps:
- name: Test Scripts
uses: benc-uk/workflow-dispatch@v1
with:
workflow: Test Scripts
token: ${{ secrets.ZOWE_ROBOT_TOKEN }}
ref: zowe-v1-lts
- name: WebHelp CI
uses: benc-uk/workflow-dispatch@v1
with:
workflow: CI for WebHelp Contribution
token: ${{ secrets.ZOWE_ROBOT_TOKEN }}
inputs: '{ "release": "false" }'
ref: zowe-v1-lts
v2-lts:
runs-on: ubuntu-latest
steps:
- name: Test Scripts
uses: benc-uk/workflow-dispatch@v1
with:
workflow: Test Scripts
token: ${{ secrets.ZOWE_ROBOT_TOKEN }}
ref: master
- name: WebHelp CI
uses: benc-uk/workflow-dispatch@v1
with:
workflow: CI for WebHelp Contribution
token: ${{ secrets.ZOWE_ROBOT_TOKEN }}
inputs: '{ "release": "false" }'
ref: master