Skip to content
This repository was archived by the owner on Oct 17, 2025. It is now read-only.

Commit ebdda8b

Browse files
committed
activating crons back
1 parent 2c019c7 commit ebdda8b

File tree

6 files changed

+12
-38
lines changed

6 files changed

+12
-38
lines changed

.github/workflows/build_logic_mainnet.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Process building feature (MainNet)
22

33
on:
4-
# schedule:
5-
# - cron: "35 */2 * * *"
4+
schedule:
5+
- cron: "35 */2 * * *"
66
workflow_dispatch:
77

88
concurrency:

.github/workflows/build_logic_testnet.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Process building feature (TestNet)
22

33
on:
4-
# schedule:
5-
# - cron: "35 */2 * * *"
4+
schedule:
5+
- cron: "35 */2 * * *"
66
workflow_dispatch:
77

88
concurrency:
Lines changed: 2 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Process building feature rewards (MainNet)
22

33
on:
4-
# schedule:
5-
# - cron: '0 0 * * *
4+
schedule:
5+
- cron: "0 0 * * *"
66
workflow_dispatch:
77

88
concurrency:
@@ -37,29 +37,3 @@ jobs:
3737
- name: Send rewards
3838
run: |
3939
PYTHONPATH="." poetry run python src/aw_build/process_rewards.py
40-
41-
- name: setup git config
42-
run: |
43-
git config user.name "GitHub Actions Bot"
44-
git config user.email "<>"
45-
46-
- name: Commit files
47-
id: commit_files
48-
if: always()
49-
run: |
50-
git config --local user.email "millionalgos@pm.me"
51-
git config --local user.name "github-actions[bot]"
52-
if [ -n "$(git status --porcelain)" ]; then
53-
git commit -m "chore(mainnet): build rewards timestamp 🤖" -a
54-
echo "HAS_COMMITS=true" >> "$GITHUB_ENV"
55-
else
56-
echo "no changes - skipping "
57-
echo "HAS_COMMITS=false" >> "$GITHUB_ENV"
58-
fi
59-
60-
- name: Push changes
61-
uses: ad-m/github-push-action@master
62-
if: env.HAS_COMMITS != false
63-
with:
64-
github_token: ${{ secrets.GITHUB_TOKEN }}
65-
branch: mainnet

.github/workflows/core_logic_mainnet.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Process influence and packs (MainNet)
22

33
on:
4-
# schedule:
5-
# - cron: '5 * * * *'
4+
schedule:
5+
- cron: "5 * * * *"
66
workflow_dispatch:
77

88
concurrency:

.github/workflows/core_logic_testnet.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Process influence and packs (TestNet)
22

33
on:
4-
# schedule:
5-
# - cron: '5 * * * *'
4+
schedule:
5+
- cron: "5 * * * *"
66
workflow_dispatch:
77

88
concurrency:

.github/workflows/depost_swap_fees_to_pool_mainnet.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Check swap fees wallet and deposit to AWT liquidity if threshold reached (MainNet)
22

33
on:
4-
# schedule:
5-
# - cron: '0 */7 * * *'
4+
schedule:
5+
- cron: "0 */7 * * *"
66
workflow_dispatch:
77

88
jobs:

0 commit comments

Comments
 (0)