Skip to content
This repository was archived by the owner on May 22, 2023. It is now read-only.

Commit c3aeaac

Browse files
Merge pull request #911 from keep-network/adjustments-for-meercode
Adding cron for daily tests and builds on Mercodee The purpose is to set a cron job that would run tests and builds on daily basis so it can be displayed on Meercode dashboard.
2 parents 625d61a + 1b57485 commit c3aeaac

3 files changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/client.yml

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

33
on:
4+
schedule:
5+
- cron: "0 0 * * *"
46
push:
57
branches:
68
- main
@@ -45,6 +47,7 @@ jobs:
4547
needs: client-detect-changes
4648
if: |
4749
github.event_name == 'push'
50+
|| github.event_name == 'schedule'
4851
|| needs.client-detect-changes.outputs.path-filter == 'true'
4952
|| (github.event_name == 'workflow_dispatch'
5053
&& github.event.inputs.environment != 'alfajores')
@@ -148,6 +151,7 @@ jobs:
148151
needs: client-detect-changes
149152
if: |
150153
github.event_name == 'push'
154+
|| github.event_name == 'schedule'
151155
|| needs.client-detect-changes.outputs.path-filter == 'true'
152156
|| (github.event_name == 'workflow_dispatch'
153157
&& github.event.inputs.environment == 'alfajores')

.github/workflows/contracts.yml

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

33
on:
4+
schedule:
5+
- cron: "0 0 * * *"
46
push:
57
branches:
68
- main

.github/workflows/staker-rewards.yml

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

33
on:
4+
schedule:
5+
- cron: "0 0 * * *"
46
push:
57
branches:
68
- main

0 commit comments

Comments
 (0)