From 829415dfda03fe0cfd723fdbc9799e38d0b6918f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Wed, 23 Oct 2024 13:19:45 +0200 Subject: [PATCH] workflows: Remove the possibility to manually trigger the nightly CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .github/workflows/ci-nightly.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci-nightly.yaml b/.github/workflows/ci-nightly.yaml index 75f5f26675..fe1fbde858 100644 --- a/.github/workflows/ci-nightly.yaml +++ b/.github/workflows/ci-nightly.yaml @@ -2,7 +2,6 @@ name: Kata Containers Nightly CI on: schedule: - cron: '0 0 * * *' - workflow_dispatch: concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}