Skip to content

Commit e9e221d

Browse files
committed
ci: Add a monthly schedule for the pipeline
1 parent d0e7e85 commit e9e221d

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

.github/workflows/coding-standards.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: "coding standards"
22

3-
on: ["pull_request", "push"]
3+
on:
4+
pull_request: ~
5+
push: ~
6+
schedule:
7+
# Do not make it the first of the month and/or midnight since it is a very busy time
8+
- cron: "* 10 5 * *"
49

510
jobs:
611
coding-standards:

.github/workflows/static-analysis.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: "static analysis"
22

3-
on: ["pull_request", "push"]
3+
on:
4+
pull_request: ~
5+
push: ~
6+
schedule:
7+
# Do not make it the first of the month and/or midnight since it is a very busy time
8+
- cron: "* 10 5 * *"
49

510
jobs:
611
static-analysis:

.github/workflows/unit-tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: "unit tests"
22

3-
on: [ "pull_request", "push" ]
3+
on:
4+
pull_request: ~
5+
push: ~
6+
schedule:
7+
# Do not make it the first of the month and/or midnight since it is a very busy time
8+
- cron: "* 10 5 * *"
49

510
jobs:
611
tests:

0 commit comments

Comments
 (0)