mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-04-27 03:21:04 +00:00
This PR fixes the entry or use of the ci weekly GHA workflow to run properly the weekly k8s tests. Signed-off-by: Gabriela Cervantes <gabriela.cervantes.tellez@intel.com>
20 lines
494 B
YAML
20 lines
494 B
YAML
name: Kata Containers CoCo Stability Tests Weekly
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * 0'
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
kata-containers-ci-on-push:
|
|
uses: ./.github/workflows/ci-weekly.yaml
|
|
with:
|
|
commit-hash: ${{ github.sha }}
|
|
pr-number: "weekly"
|
|
tag: ${{ github.sha }}-weekly
|
|
target-branch: ${{ github.ref_name }}
|
|
secrets: inherit
|