[Bug]: If STX is in a Pending state, attempting to initiate a transaction on a different network leads to a situation where the transaction perpetually loads (indicated by a loader on the Swap/Send button). If the user attempts to switch to another network during this time, the app crashes #72327
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: "CLA Signature Bot" | |
on: | |
issue_comment: | |
types: [created] | |
pull_request_target: | |
types: [opened,closed,synchronize] | |
merge_group: | |
types: [checks_requested] | |
jobs: | |
CLABot: | |
if: github.event_name == 'pull_request_target' || contains(github.event.comment.html_url, '/pull/') | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
contents: write | |
steps: | |
- name: "CLA Signature Bot" | |
uses: MetaMask/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
path-to-signatures: 'cla.json' | |
url-to-cladocument: 'https://metamask.io/cla.html' | |
# This branch can't have protections, commits are made directly to the specified branch. | |
branch: 'cla-signatures' | |
allowlist: 'dependabot[bot],metamaskbot,crowdin-bot,runway-github[bot]' | |
allow-organization-members: true | |
blockchain-storage-flag: false |