Skip to content

Commit 0ca64b9

Browse files
committed
Add cron job
1 parent f766b27 commit 0ca64b9

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

.github/workflows/linux.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: Linux build
22

3-
on: [push, pull_request, workflow_dispatch]
3+
on:
4+
workflow_dispatch:
5+
push:
6+
pull_request:
7+
schedule:
8+
- cron: '01 01 * * 6' # Run every Saturday
49

510
jobs:
611
build:
@@ -10,6 +15,7 @@ jobs:
1015
strategy:
1116
matrix:
1217
perl:
18+
# - 'develop'
1319
- '5.38'
1420
- '5.36'
1521
- '5.34'

.github/workflows/macos.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: Macos build
22

3-
on: [push, pull_request, workflow_dispatch]
3+
on:
4+
workflow_dispatch:
5+
push:
6+
pull_request:
7+
schedule:
8+
- cron: '01 01 * * 6' # Run every Saturday
49

510
jobs:
611
build:
@@ -10,6 +15,7 @@ jobs:
1015
strategy:
1116
matrix:
1217
perl:
18+
# - 'develop'
1319
- '5.38'
1420
- '5.36'
1521
- '5.34'

.github/workflows/windows.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: Windows build
22

3-
on: [push, pull_request, workflow_dispatch]
3+
on:
4+
workflow_dispatch:
5+
push:
6+
pull_request:
7+
schedule:
8+
- cron: '01 01 * * 6' # Run every Saturday
49

510
jobs:
611
build:
@@ -10,6 +15,7 @@ jobs:
1015
strategy:
1116
matrix:
1217
perl:
18+
# - 'develop'
1319
- '5.38'
1420
- '5.36'
1521
- '5.34'

0 commit comments

Comments
 (0)