fix: temporarily disable stripe_v2 configuration from new admin #194
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: PR Title Validation | |
| on: | |
| pull_request: | |
| types: ["opened", "edited", "reopened", "synchronize"] | |
| jobs: | |
| validate_pr_title: | |
| if: "!startsWith(github.event.head_commit.message, 'bump:')" | |
| runs-on: ubuntu-latest | |
| name: "Validate PR title with commitizen" | |
| steps: | |
| - run: pip install commitizen | |
| - run: cat $GITHUB_EVENT_PATH | jq -r '.pull_request .title' | cz check |