Skip to content

Commit

Permalink
Merge pull request #2667 from AlexandreSinger/feature-ci-split-workflows
Browse files Browse the repository at this point in the history
[CI] Turned On NightlyTests on PR
  • Loading branch information
vaughnbetz authored Jul 29, 2024
2 parents 0fff441 + 2b25f94 commit edce4b4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/nightly_test.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit edce4b4

Please sign in to comment.