Skip to content

Commit 2b25f94

Browse files
[CI] Turned On NightlyTests on PR
The self-hosted runners inexplicably came back to life. Turning back on the NightlyTests on PR synchronization.
1 parent 33f6618 commit 2b25f94

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/nightly_test.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
name: NightlyTest
22

33
on:
4+
# We want to run the CI when anything is pushed to master.
5+
# Since master is a protected branch this only happens when a PR is merged.
6+
# This is a double check in case the PR was stale and had some issues.
7+
push:
8+
branches:
9+
- master
10+
paths-ignore: # Prevents from running if only docs are updated
11+
- 'doc/**'
12+
- '**/*README*'
13+
- '**.md'
14+
- '**.rst'
15+
pull_request:
16+
paths-ignore: # Prevents from running if only docs are updated
17+
- 'doc/**'
18+
- '**/*README*'
19+
- '**.md'
20+
- '**.rst'
421
workflow_dispatch:
522
schedule:
623
- cron: '0 0 * * *' # daily

0 commit comments

Comments
 (0)