Skip to content

Commit aef09e0

Browse files
committed
make job run once a month
1 parent ea107b8 commit aef09e0

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

.github/workflows/build.yml

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
branches: [ main ]
66
pull_request:
77
branches: [ main, dev ]
8+
schedule:
9+
# Runs the workflow at 00:00 on the first day of every month
10+
- cron: '0 0 1 * *'
811

912
env:
1013
CARGO_TERM_COLOR: always

.github/workflows/lints.yml

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
branches: [ main ]
66
pull_request:
77
branches: [ main, dev]
8+
schedule:
9+
# Runs the workflow at 00:00 on the first day of every month
10+
- cron: '0 0 1 * *'
811

912
env:
1013
CARGO_TERM_COLOR: always

.github/workflows/tests.yml

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
branches: [ main ]
66
pull_request:
77
branches: [ main, dev ]
8+
schedule:
9+
# Runs the workflow at 00:00 on the first day of every month
10+
- cron: '0 0 1 * *'
811

912
env:
1013
CARGO_TERM_COLOR: always

0 commit comments

Comments
 (0)