Skip to content

ci: pass PAT to release-please so its PRs trigger workflows #26

ci: pass PAT to release-please so its PRs trigger workflows

ci: pass PAT to release-please so its PRs trigger workflows #26

Workflow file for this run

name: Lint PR title
on:
pull_request:
types: [opened, edited, reopened, synchronize]
permissions:
pull-requests: read
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
types: |
feat
fix
docs
chore
refactor
test
ci
perf
style
requireScope: false
subjectPattern: '^[a-z].+[^.]$'
subjectPatternError: |
The subject "{subject}" found in the PR title "{title}"
did not match the pattern. The subject must start with a lowercase
character and not end with a period.