[Bot] Evm on Staging #336
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: "[Bot] Evm on Staging" | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: 0 8 * * 3 | |
concurrency: | |
group: bot-seed2 | |
jobs: | |
run-bot: | |
runs-on: [ledger-live-medium] | |
steps: | |
- name: generate token | |
id: generate-token | |
uses: tibdex/github-app-token@v1 | |
with: | |
app_id: ${{ secrets.GH_BOT_APP_ID }} | |
private_key: ${{ secrets.GH_BOT_PRIVATE_KEY }} | |
- uses: actions/checkout@v4 | |
with: | |
ref: main | |
- name: Retrieving coin apps | |
uses: actions/checkout@v4 | |
with: | |
ref: generated/ledger-live-bot | |
repository: LedgerHQ/coin-apps | |
token: ${{ steps.generate-token.outputs.token }} | |
path: coin-apps | |
- uses: LedgerHQ/ledger-live/tools/actions/composites/bot@develop | |
id: bot | |
timeout-minutes: 120 | |
with: | |
EXPLORER: https://atlas-stg.ledger-test.com | |
SHOW_LEGACY_NEW_ACCOUNT: "1" | |
SEED: ${{ secrets.SEED2 }} | |
SLACK_API_TOKEN: ${{secrets.SLACK_API_TOKEN}} | |
SLACK_ICON_EMOJI: ":bot-seed2:" | |
SLACK_CHANNEL: explorer-bot-stg | |
# These currencies are not yet handled by ATLAS, should be added back | |
# to the list once they are. | |
# avalanche_c_chain,bsc,polygon,ethereum_classic | |
BOT_FILTER_CURRENCIES: ethereum,ethereum_sepolia,ethereum_holesky | |
BOT_ENVIRONMENT: staging |