File tree Expand file tree Collapse file tree 2 files changed +38
-1
lines changed Expand file tree Collapse file tree 2 files changed +38
-1
lines changed Original file line number Diff line number Diff line change 10
10
required : false
11
11
type : string
12
12
description : " Array of test groups to run: ['ari1','channels']. Defaults to NIGHTLYTEST_LIST"
13
+ realtime :
14
+ type : boolean
15
+ required : false
16
+ default : false
13
17
14
18
schedule :
15
- - cron : ' 0 2 * * *'
19
+ # Monday-Saturday 2am
20
+ - cron : ' 0 2 * * 1-6'
16
21
17
22
jobs :
18
23
NightlyTests :
21
26
with :
22
27
branches : ${{ inputs.branches || vars.NIGHTLYTEST_BRANCHES }}
23
28
group_list : ${{ inputs.group_list || vars.NIGHTLYTEST_LIST }}
29
+ realtime : ${{ inputs.realtime }}
24
30
secrets :
25
31
TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change
1
+ name : WeeklyTests
2
+ on :
3
+ workflow_dispatch :
4
+ inputs :
5
+ branches :
6
+ required : false
7
+ type : string
8
+ description : " Array of branches to run: ['21','master']. Defaults to NIGHTLYTEST_BRANCHES"
9
+ group_list :
10
+ required : false
11
+ type : string
12
+ description : " Array of test groups to run: ['ari1','channels']. Defaults to NIGHTLYTEST_LIST"
13
+ realtime :
14
+ type : boolean
15
+ required : false
16
+ default : true
17
+
18
+ schedule :
19
+ # Sunday 2am
20
+ - cron : ' 0 2 * * 0'
21
+
22
+ jobs :
23
+ WeeklyTests :
24
+ name : WeeklyTests
25
+ uses : asterisk/asterisk-ci-actions/.github/workflows/AsteriskNightlyTest.yml@main-nightly-realtime
26
+ with :
27
+ branches : ${{ inputs.branches || vars.NIGHTLYTEST_BRANCHES }}
28
+ group_list : ${{ inputs.group_list || vars.NIGHTLYTEST_LIST }}
29
+ realtime : ${{ inputs.realtime }}
30
+ secrets :
31
+ TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments