From fabd6ed76ce62c521de8d8a6534aebacf60b7600 Mon Sep 17 00:00:00 2001 From: Dennis Maisenbacher Date: Wed, 24 Sep 2025 09:13:22 +0200 Subject: [PATCH] CI: allow manual workflow dispatches to run Allow running the nightly tests on manual workflow dispatches regardless of the repository. This allows us to start the job on forks that have the correct runner scale set deployed. Signed-off-by: Dennis Maisenbacher --- .github/workflows/run-nightly-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-nightly-tests.yml b/.github/workflows/run-nightly-tests.yml index ba98128047..2b5a1c7ea8 100644 --- a/.github/workflows/run-nightly-tests.yml +++ b/.github/workflows/run-nightly-tests.yml @@ -8,7 +8,7 @@ on: jobs: nightly-tests: - if: github.repository == 'linux-nvme/nvme-cli' + if: ${{ github.event_name == 'workflow_dispatch' || github.repository == 'linux-nvme/nvme-cli' }} runs-on: arc-vm-nvme-cli steps: - uses: actions/checkout@v5