fix(transaction): guard Tx.Clone against nil big.Int fields #57
Workflow file for this run
This file contains hidden or 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: Changelogs | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| jobs: | |
| changelogs: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| # fetch-depth: 0 is required so the action can `git diff origin/main...HEAD` | |
| # against the base branch. | |
| - uses: actions/checkout@v7.0.0 | |
| with: | |
| fetch-depth: 0 | |
| # NOTE: `ai: 'amp -x'` and the `AMP_API_KEY` env are still intentionally | |
| # omitted. The check action's AI path runs | |
| # `curl -sSL https://changelogs.sh | sh`, which installs the upstream | |
| # `wevm/changelogs-rs` binary — that binary does not yet ship Go | |
| # ecosystem support, so the AI generation step would error out with | |
| # `could not detect workspace`. Re-enable AI suggestions once a | |
| # Go-aware binary is published to `wevm/changelogs-rs/releases`. | |
| - uses: tempoxyz/changelogs/check@master |