Skip to content

It's really important to be able to add new chains, either by using wallet_addEthereumChain or doing it manually, because there are new Layer 2 chains popping up all the time. Waiting for app updates to add each new chain would just be too slow. #1009

It's really important to be able to add new chains, either by using wallet_addEthereumChain or doing it manually, because there are new Layer 2 chains popping up all the time. Waiting for app updates to add each new chain would just be too slow.

It's really important to be able to add new chains, either by using wallet_addEthereumChain or doing it manually, because there are new Layer 2 chains popping up all the time. Waiting for app updates to add each new chain would just be too slow. #1009

name: Label issues for triage
on:
issues:
types:
- reopened
- opened
jobs:
label_issues:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: actions/github-script@v6
with:
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ["needs triage 📥"]
})