Skip to content

feat: Add actions for checking title and description #15

feat: Add actions for checking title and description

feat: Add actions for checking title and description #15

Workflow file for this run

name: PR Title Check
on:
pull_request:
types: [opened, edited, synchronize, reopened, ready_for_review]
jobs:
run-title-description-check:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
- uses: amannn/action-semantic-pull-request@47b15d52c5c30e94a17ec87eb8dd51ff5221fed9
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
types: |
feat
fix
docs
refactor
test
chore
requireScope: false
subjectPattern: ^([A-Z].*[^.]|bump .*)$