Skip to content

Commit cbe65d9

Browse files
committed
Add scheduled builds
Signed-off-by: Gaurav Gupta <gaugup@microsoft.com>
1 parent 48ef38c commit cbe65d9

4 files changed

Lines changed: 16 additions & 1 deletion

File tree

.github/workflows/code-scan.yml

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

912
jobs:
1013
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: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
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+
branches: [ master ]
10+
- cron: '30 5 * * *'
411

512
jobs:
613
build-linux:

.github/workflows/pythonpackage.yml

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

1215
jobs:
1316
build:

0 commit comments

Comments
 (0)