Fetch CoinGecko #70
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Fetch CoinGecko | |
on: | |
workflow_dispatch: | |
schedule: | |
# 23:15 UTC Every Monday | |
# GitHub Actions might be delayed if time is at exact hour | |
- cron: "15 23 * * 1" | |
jobs: | |
fetchCG: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- name: Install dependencies | |
run: bun install | |
- name: Fetch coingecko | |
run: bun fetch coingecko | |
- name: Makelist | |
run: bun makelist coingecko | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
author: PancakeSwap Bot <[email protected]> | |
delete-branch: true | |
commit-message: "Coingecko token list" | |
title: "chore: Update Coingecko token list" | |
body: | | |
- Update Coingecko token list | |
Auto-generated by [create-pull-request][1] | |
[1]: https://github.com/peter-evans/create-pull-request | |
branch: update-coingecko |