refactor(router): modify net_amount
to be a struct in the domain model of payment_attempt and handle amount changes across all flows
#19178
Workflow file for this run
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: PR Title Spell Check | |
on: | |
pull_request: | |
types: | |
- opened | |
- edited | |
- synchronize | |
jobs: | |
typos: | |
name: Spell check PR title | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Store PR title in a file | |
shell: bash | |
env: | |
TITLE: ${{ github.event.pull_request.title }} | |
run: echo $TITLE > pr_title.txt | |
- name: Spell check | |
uses: crate-ci/typos@master | |
with: | |
files: ./pr_title.txt |