mirror of https://github.com/asterisk/asterisk
...and add "realtime" option.pull/933/head
parent
a444430a76
commit
c9450b49f5
@ -0,0 +1,31 @@
|
|||||||
|
name: WeeklyTests
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
branches:
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
description: "Array of branches to run: ['21','master']. Defaults to NIGHTLYTEST_BRANCHES"
|
||||||
|
group_list:
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
description: "Array of test groups to run: ['ari1','channels']. Defaults to NIGHTLYTEST_LIST"
|
||||||
|
realtime:
|
||||||
|
type: boolean
|
||||||
|
required: false
|
||||||
|
default: true
|
||||||
|
|
||||||
|
schedule:
|
||||||
|
# Sunday 2am
|
||||||
|
- cron: '0 2 * * 0'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
WeeklyTests:
|
||||||
|
name: WeeklyTests
|
||||||
|
uses: asterisk/asterisk-ci-actions/.github/workflows/AsteriskNightlyTest.yml@main
|
||||||
|
with:
|
||||||
|
branches: ${{ inputs.branches || vars.NIGHTLYTEST_BRANCHES }}
|
||||||
|
group_list: ${{ inputs.group_list || vars.NIGHTLYTEST_LIST }}
|
||||||
|
realtime: ${{ inputs.realtime }}
|
||||||
|
secrets:
|
||||||
|
TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
Loading…
Reference in new issue