Fetch and update LP APRs #624
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 and update LP APRs | |
on: | |
workflow_dispatch: | |
schedule: | |
# 23:15 UTC | |
# GitHub Actions might be delayed if time is at exact hour | |
- cron: '15 23 * * *' | |
jobs: | |
updateLPsAPRs: | |
runs-on: ubuntu-latest | |
if: github.repository == 'pancakeswap/pancake-frontend' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up pnpm | |
uses: pnpm/[email protected] | |
- name: Set up node@18 | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'pnpm' | |
node-version: 18 | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v3 | |
name: Setup pnpm cache | |
with: | |
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install dependencies | |
run: pnpm i --ignore-scripts | |
- name: Fetch and save LP APR data | |
run: pnpm updateLPsAPR | |
env: | |
NEXT_PUBLIC_NODE_REAL_HEADER: ${{ secrets.NODE_REAL_HEADER }} | |
- name: Format | |
run: pnpm prettier --write "apps/web/src/config/constants/lpAprs/*.{ts,json}" | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
author: PancakeSwap Bot <[email protected]> | |
token: ${{ secrets.LP_APR_PANCAKE_BOT }} | |
delete-branch: true | |
commit-message: 'chore: Update LP APRs for Farms' | |
title: 'chore: Update LP APRs for Farms' | |
body: | | |
- Update LP APRs for Farms | |
Auto-generated by [create-pull-request][1] | |
[1]: https://github.com/peter-evans/create-pull-request | |
labels: automerge | |
branch: update-lp-aprs-for-farms |