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

Commit 1c963b4

Browse files
Merge pull request #340 from BalancerMaxis/issue/336
ci: only commit updated core pool fees csv #336
2 parents 868bd53 + b14af4e commit 1c963b4

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/collect_fees_cron.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,14 @@ jobs:
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v4
16+
with:
17+
ref: "collect-fees-cron"
1618

1719
- name: Setup Python 3.9
1820
uses: actions/setup-python@v5
1921
with:
2022
python-version: "3.10"
23+
cache: "pip"
2124

2225
- name: Collect fees
2326
env:
@@ -28,12 +31,9 @@ jobs:
2831
pip3 install -r requirements.txt
2932
python3 main.py
3033
31-
- name: Create PR
32-
id: cpr
33-
uses: peter-evans/create-pull-request@v7
34+
- name: Commit CSV file
35+
uses: stefanzweifel/git-auto-commit-action@v5
3436
with:
35-
commit-message: "feat: new fees report"
36-
title: "New Fees Report"
37-
branch: gha-fees-report
38-
delete-branch: true
39-
labels: "Fees-Report"
37+
branch: "collect-fees-cron"
38+
file_pattern: "fee_allocator/allocations/current_fees.csv"
39+
commit_message: "ci: dump csv file with all current fees"

0 commit comments

Comments
 (0)