Skip to content

Commit b3d08a6

Browse files
authored
Merge pull request #263 from Enmk/cron_builds
Scheduling CI/CD runs on Monday midnight
2 parents d22790c + bebaac0 commit b3d08a6

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

.github/workflows/linux.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Linux
22

33
on:
4+
schedule:
5+
- cron: '0 0 * * 1'
46
push:
57
branches: [ master ]
68
pull_request:

.github/workflows/macos.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: macOS
22

33
on:
4+
schedule:
5+
- cron: '0 0 * * 1'
46
push:
57
branches: [ master ]
68
pull_request:

.github/workflows/windows_mingw.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Windows mingw
22

33
on:
4+
schedule:
5+
- cron: '0 0 * * 1'
46
push:
57
branches: [ master ]
68
pull_request:

.github/workflows/windows_msvc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Windows
22

33
on:
4+
schedule:
5+
- cron: '0 0 * * 1'
46
push:
57
branches: [ master ]
68
pull_request:

0 commit comments

Comments
 (0)