mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-17 13:24:25 +01:00
This is a very nice suggestion from Steve Horsman, as with that we can manually trigger the workflow anytime we need to test it, instead of waiting for a full day for it to be retriggered via the `schedule` event. Signed-off-by: Fabiano Fidêncio <fabiano.fidencio@intel.com>
15 lines
301 B
YAML
15 lines
301 B
YAML
name: Kata Containers Nightly CI
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
kata-containers-ci-on-push:
|
|
uses: ./.github/workflows/ci.yaml
|
|
with:
|
|
commit-hash: ${{ github.sha }}
|
|
pr-number: "nightly"
|
|
tag: ${{ github.sha }}-nightly
|
|
secrets: inherit
|