-
Notifications
You must be signed in to change notification settings - Fork 8
42 lines (40 loc) · 1.33 KB
/
pr-title-lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Lint PR Title
on:
pull_request_target:
types:
- opened
- edited
- synchronize
jobs:
main:
name: PR Title Checks
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5.0.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Optionally, you can provide options for further constraints.
with:
# Configure which types are allowed.
# Default: https://github.com/commitizen/conventional-commit-types
types: |
chore
docs
feat
fix
refactor
style
test
# Configure which scopes are allowed.
scopes: |
deps
deps-dev
# Configure that a scope must always be provided.
requireScope: false
# For work-in-progress PRs you can typically use draft pull requests
# from Github. However, private repositories on the free plan don't have
# this option and therefore this action allows you to opt-in to using the
# special "[WIP]" prefix to indicate this state. This will avoid the
# validation of the PR title and the pull request checks remain pending.
# Note that a second check will be reported if this is enabled.
wip: true