Skip to content
This repository was archived by the owner on Jun 17, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/collect_fees_cron.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,14 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: "collect-fees-cron"

- name: Setup Python 3.9
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: "pip"

- name: Collect fees
env:
Expand All @@ -28,12 +31,9 @@ jobs:
pip3 install -r requirements.txt
python3 main.py

- name: Create PR
id: cpr
uses: peter-evans/create-pull-request@v7
- name: Commit CSV file
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit-message: "feat: new fees report"
title: "New Fees Report"
branch: gha-fees-report
delete-branch: true
labels: "Fees-Report"
branch: "collect-fees-cron"
file_pattern: "fee_allocator/allocations/current_fees.csv"
commit_message: "ci: dump csv file with all current fees"
Loading