Fetch CMC #155
This file contains hidden or 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 CMC | |
| 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: | |
| fetchCMC: | |
| 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 CMC | |
| run: bun fetch cmc | |
| - name: Makelist | |
| run: bun makelist cmc | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@v3 | |
| with: | |
| author: PancakeSwap Bot <github-bot@pancakeswap.com> | |
| delete-branch: true | |
| commit-message: "CMC token list" | |
| title: "chore: Update CMC token list" | |
| body: | | |
| - Update CMC token list | |
| Auto-generated by [create-pull-request][1] | |
| [1]: https://github.com/peter-evans/create-pull-request | |
| branch: update-cmc |