Skip to content

Commit cd33552

Browse files
committed
minor #167 ci: Add a monthly schedule for the pipeline (theofidry)
This PR was merged into the 0.4-dev branch. Discussion ---------- ci: Add a monthly schedule for the pipeline Commits ------- e9e221d ci: Add a monthly schedule for the pipeline
2 parents 6d32f38 + e9e221d commit cd33552

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)