Skip to content

feat: live miner leaderboard with stats cards #163 #1599

feat: live miner leaderboard with stats cards #163

feat: live miner leaderboard with stats cards #163 #1599

Workflow file for this run

name: RustChain Tip Bot
on:
issue_comment:
types: [created]
jobs:
process-tip:
runs-on: ubuntu-latest
if: contains(github.event.comment.body, '/tip')
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install requests PyYAML
- name: Process tip command
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TIP_BOT_WALLET: ${{ secrets.TIP_BOT_WALLET }}
TIP_BOT_ADMINS: ${{ secrets.TIP_BOT_ADMINS }}
run: |
python integrations/rustchain-bounties/tip_bot_action.py
continue-on-error: true