chore: release to production (main) #1194
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 | |
| on: | |
| pull_request_target: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| - reopened | |
| permissions: | |
| pull-requests: read | |
| jobs: | |
| # Note that this is important for helping ensure squash commits follow conventional commit conventions, | |
| # which in turn is needed so release please creates a release. | |
| # See ../../docs/release-please-flow.md. | |
| # We are using the default conventional commit types as specified in https://github.com/amannn/action-semantic-pull-request → https://github.com/commitizen/conventional-commit-types | |
| validate-title: | |
| name: Validate PR title follows conventional commits | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |