From 4976329bbb0872d88a23e68fa5ae2bdadaaeda14 Mon Sep 17 00:00:00 2001 From: PietropaoloFrisoni Date: Thu, 19 Sep 2024 13:45:45 -0400 Subject: [PATCH] Adding option to manually trigger the workflow --- .github/workflows/numpy_1_tests.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/numpy_1_tests.yml b/.github/workflows/numpy_1_tests.yml index 8f9a944bcee..0c76d43148d 100644 --- a/.github/workflows/numpy_1_tests.yml +++ b/.github/workflows/numpy_1_tests.yml @@ -2,7 +2,11 @@ name: NumPy 1 - Tests on: schedule: - - cron: '0 6 * * *' # Runs daily at 6 AM UTC (1 AM Toronto in winter, 2 AM in summer) + # Runs daily at 6 AM UTC (1 AM Toronto in winter, 2 AM in summer) + - cron: '0 6 * * *' + + # Allows to run this workflow manually from the Actions tab + workflow_dispatch: concurrency: group: numpy-1-unit-tests-${{ github.ref }}