Skip to content

Commit

Permalink
chore: add more sdtout output
Browse files Browse the repository at this point in the history
  • Loading branch information
gosuto-inzasheru committed Jul 17, 2024
1 parent 23f3421 commit 2038024
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/upkeeps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ jobs:
- name: Commit CSV file
uses: stefanzweifel/git-auto-commit-action@v5
with:
branch: upkeeps
branch: "upkeeps"
file_pattern: "upkeeps.csv"
commit_message: "ci: dump csv file with all queried upkeeps"
4 changes: 3 additions & 1 deletion tools/python/query_upkeeps.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,6 @@ def get_upkeeps(chain="ethereum"):
]:
dfs.append(get_upkeeps(chain))
os.makedirs("../../out", exist_ok=True)
pd.concat(dfs).to_csv("../../out/upkeeps.csv", index=False)
dfs = pd.concat(dfs)
print(dfs)
dfs.to_csv("upkeeps.csv", index=False)

0 comments on commit 2038024

Please sign in to comment.