mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-04-27 03:21:04 +00:00
As a new workflow was added for the cases where developers want to test their changes in the workflow itself, let's make sure we stop allowing manual triggers on this workflow, which can lead to a polluted / misleading weather of the CI. Signed-off-by: Fabiano Fidêncio <fabiano@fidencio.org>
19 lines
451 B
YAML
19 lines
451 B
YAML
name: Kata Containers Nightly CI
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
|
|
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.yaml
|
|
with:
|
|
commit-hash: ${{ github.sha }}
|
|
pr-number: "nightly"
|
|
tag: ${{ github.sha }}-nightly
|
|
target-branch: ${{ github.ref_name }}
|
|
secrets: inherit
|