From 0d8c23059227b33da0ab967cb3e281c93c5ab9b8 Mon Sep 17 00:00:00 2001 From: AlexandreSinger Date: Wed, 30 Oct 2024 10:57:55 -0400 Subject: [PATCH] [CI] Turned Off Nightly Tests on PR and Merge The Nightly Tests have not worked for weeks. There is no reason to keep trying to run them everytime we raise a PR. I still left the cron job on so we can see if it ever comes back. This just makes merging PRs easier. --- .github/workflows/nightly_test.yml | 31 ++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/.github/workflows/nightly_test.yml b/.github/workflows/nightly_test.yml index bd639415ed9..a57c502e0d3 100644 --- a/.github/workflows/nightly_test.yml +++ b/.github/workflows/nightly_test.yml @@ -4,20 +4,23 @@ 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' + # NOTE: This was turned off in late October 2024 since the Nightly Tests were + # no longer working on the self-hosted runners. Will turn this back on + # once the issue is resolved. + # 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