chore: allocplywnear #80
Workflow file for this run
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: Update Complex N Rewarder Tokens Per Block | |
permissions: | |
contents: write | |
on: [pull_request] | |
jobs: | |
complexNRewarderTokensPerBlock: | |
if: startsWith(github.head_ref, 'complexrewarder/set/') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
cache: yarn | |
- run: cp .env.example .env | |
- run: yarn | |
- name: Propose pool allocation | |
env: | |
SAFE_PROPOSER_PRIVATE_KEY: ${{ secrets.SAFE_OPS_PROPOSER }} | |
AURORA_API_KEY: ${{ secrets.AURORA_API_KEY }} | |
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }} | |
run: yarn hardhat run scripts/ops/proposerComplexNRewarderTokensPerBlock.ts --network aurora | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: Removed complexNRewarderTokensPerBlock.json due to transaction proposed on gnosis safe |