From 2b25f948153b269915dc184daf7063aa967fc9ac Mon Sep 17 00:00:00 2001 From: AlexandreSinger Date: Mon, 29 Jul 2024 01:08:11 -0400 Subject: [PATCH] [CI] Turned On NightlyTests on PR The self-hosted runners inexplicably came back to life. Turning back on the NightlyTests on PR synchronization. --- .github/workflows/nightly_test.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/nightly_test.yml b/.github/workflows/nightly_test.yml index a569b51b493..6a3a315785a 100644 --- a/.github/workflows/nightly_test.yml +++ b/.github/workflows/nightly_test.yml @@ -1,6 +1,23 @@ name: NightlyTest on: + # We want to run the CI when anything is pushed to master. + # Since master is a protected branch this only happens when a PR is merged. + # This is a double check in case the PR was stale and had some issues. + push: + branches: + - master + paths-ignore: # Prevents from running if only docs are updated + - 'doc/**' + - '**/*README*' + - '**.md' + - '**.rst' + pull_request: + paths-ignore: # Prevents from running if only docs are updated + - 'doc/**' + - '**/*README*' + - '**.md' + - '**.rst' workflow_dispatch: schedule: - cron: '0 0 * * *' # daily