fix(fetch): change credit card to negative amount #221
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
# This GitHub Action makes sure PRs have titles that follow the "type(optional_scope): description" convention. | |
# The PR title will be used as the merge/squash commit message, and then taken as input to generate new releases. | |
name: conventional-pr | |
on: | |
pull_request: | |
branches: | |
- main | |
- master | |
types: | |
- opened | |
- edited | |
- synchronize | |
jobs: | |
pr-title: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# check for the most recent release: https://github.com/CondeNast/conventional-pull-request-action/releases | |
# replace vX.X.X below with the most recently released version | |
- uses: CondeNast/conventional-pull-request-action@v0.2.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
# to override config-conventional rules, specify a relative path to your rules module, actions/checkout is required for this setting! | |
# commitlintRulesPath: "./commitlint.rules.js" # default: undefined | |
# if the PR contains a single commit, fail if the commit message and the PR title do not match | |
commitTitleMatch: "false" # default: 'true' | |
# if you squash merge PRs and enabled "Default to PR title for squash merge commits", you can disable all linting of commits | |
ignoreCommits: "true" # default: 'false' |