Skip to content

Commit 1f68921

Browse files
authored
Merge pull request #323 from interpretml/gaugup/AddScheduledBuilds
Add scheduled builds
2 parents 00dd40a + 8da3f35 commit 1f68921

4 files changed

Lines changed: 13 additions & 1 deletion

File tree

.github/workflows/code-scan.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
branches: [master]
66
pull_request:
77
branches: [master]
8+
schedule:
9+
- cron: '30 5 * * *'
810

911
jobs:
1012
analyze:

.github/workflows/python-linting.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88
branches: [ master ]
99
pull_request:
1010
branches: [ master ]
11+
schedule:
12+
- cron: '30 5 * * *'
1113

1214
jobs:
1315
build:

.github/workflows/python-package-conda.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: Python Package using Conda
22

3-
on: [push]
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
schedule:
9+
- cron: '30 5 * * *'
410

511
jobs:
612
build-linux:

.github/workflows/pythonpackage.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88
branches: [ master ]
99
pull_request:
1010
branches: [ master ]
11+
schedule:
12+
- cron: '30 5 * * *'
1113

1214
jobs:
1315
build:

0 commit comments

Comments
 (0)