CronJob - Draw Auction Bot - Ethereum Mainnet #7474
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: CronJob - Draw Auction Bot - Ethereum Mainnet | |
on: | |
schedule: | |
- cron: "*/5 * * * *" # ie. 4:05pm, 4:10pm, 4:15pm ... etc. | |
push: | |
env: | |
CHAIN_ID: 1 | |
MIN_PROFIT_THRESHOLD_USD: 1 | |
REWARD_RECIPIENT: '' | |
ERROR_STATE_MAX_GAS_COST_THRESHOLD_USD: 1 | |
JSON_RPC_URL: ${{ secrets.ETHEREUM_MAINNET_JSON_RPC_URL }} | |
COVALENT_API_KEY: ${{ secrets.COVALENT_API_KEY }} | |
CUSTOM_RELAYER_PRIVATE_KEY: ${{ secrets.CUSTOM_RELAYER_PRIVATE_KEY }} | |
CONTRACT_JSON_URL: 'https://raw.githubusercontent.com/GenerationSoftware/pt-v5-mainnet/ca2acf967a962355b921fd4893306b961e7bc62a/deployments/ethereum/contracts.json' | |
NODE_OPTIONS: "--max_old_space_size=32768" | |
permissions: write-all | |
jobs: | |
runCLI: | |
name: Draw Auction Bot | |
runs-on: ${{ matrix.os }} | |
strategy: | |
max-parallel: 1 | |
matrix: | |
node: ["20.11.1"] | |
os: [ubuntu-latest] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Use Node ${{ matrix.node }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Store current date | |
id: date | |
run: echo "date=$(date +'%Y-%m-%d')" >> "$GITHUB_ENV" | |
- name: Store current time | |
id: time | |
run: echo "time=$(date +'%H-%M-%S_%Z')" >> "$GITHUB_ENV" | |
- name: Run bot | |
id: runBot | |
run: | | |
npm install | |
npx tsx index.ts | |
- name: Push changes (if required) | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} | |
force: true | |
- name: Comment Error | |
id: commentError | |
if: steps.runBot.outputs.exitcode == 1 | |
uses: actions/github-script@v5 | |
continue-on-error: true | |
with: | |
script: | | |
await github.rest.issues.create({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
title: `Draw Auction bot failed for run at "$date"__"$time": Exit Code 1` | |
}) |