We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0fff441 + 2b25f94 commit edce4b4Copy full SHA for edce4b4
.github/workflows/nightly_test.yml
@@ -1,6 +1,23 @@
1
name: NightlyTest
2
3
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
17
18
19
20
21
workflow_dispatch:
22
schedule:
23
- cron: '0 0 * * *' # daily
0 commit comments