Skip to content

Commit fabd6ed

Browse files
committed
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 <[email protected]>
1 parent ab5a085 commit fabd6ed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/run-nightly-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
nightly-tests:
11-
if: github.repository == 'linux-nvme/nvme-cli'
11+
if: ${{ github.event_name == 'workflow_dispatch' || github.repository == 'linux-nvme/nvme-cli' }}
1212
runs-on: arc-vm-nvme-cli
1313
steps:
1414
- uses: actions/checkout@v5

0 commit comments

Comments
 (0)