Skip to content

docs: Add PR title check workflow #12

docs: Add PR title check workflow

docs: Add PR title check workflow #12

name: "PR Title Check"
on:
pull_request:
types: [opened, edited, synchronize, reopened]
permissions:
pull-requests: read
jobs:
check-title:
runs-on: ubuntu-latest
steps:
- name: Check PR Title
uses: Slashgear/action-check-pr-title@v4.3.0
with:
# Erlaubt feat:, fix:, chore:, docs: etc. gefolgt von Text
regexp: '^(feat|fix|docs)(\(.+\))?: .+'
helpMessage: "Bitte nutze Conventional Commits (z.B. 'feat: add login')."