Skip to content

ci: auto-approve and auto-merge patch dependabot PRs #74

ci: auto-approve and auto-merge patch dependabot PRs

ci: auto-approve and auto-merge patch dependabot PRs #74

Workflow file for this run

name: PR Title Check
on:
pull_request:
types: [opened, edited, reopened]
push:
branches: ['release-please--**']
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# Require conventional commit format: type(scope): description
# Types allowed (default set)
types: |
feat
fix
refac
test
docs
chore
ci
perf
# Scope is optional
requireScope: false
# Subject (description) requirements
subjectPattern: ^.+$
subjectPatternError: "PR title must have a description after the type"