Skip to content

fix typo: 'occured' -> 'occurred' in homebrew bump action #2036

fix typo: 'occured' -> 'occurred' in homebrew bump action

fix typo: 'occured' -> 'occurred' in homebrew bump action #2036

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"