fix typo: 'occured' -> 'occurred' in homebrew bump action #2036
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: Release Semantics - PR Title | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - synchronize | |
| permissions: | |
| pull-requests: read | |
| id-token: write | |
| jobs: | |
| lint: | |
| name: Lint PR title | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Validate PR title 🔎 | |
| uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6 | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| with: | |
| # Require conventional commit types | |
| types: | | |
| feat | |
| fix | |
| docs | |
| style | |
| refactor | |
| perf | |
| test | |
| ci | |
| chore | |
| revert | |
| proposal | |
| # Scope is optional | |
| requireScope: false | |
| # Disallow uppercase first letter in subject | |
| subjectPattern: ^[A-Z].+$ | |
| subjectPatternError: | | |
| The subject "{subject}" must start with an uppercase letter. | |
| Example: "feat: Add new component" not "feat: add new component" |