We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 440ec4e commit 5966159Copy full SHA for 5966159
.github/workflows/pr.yml
@@ -16,3 +16,24 @@ jobs:
16
steps:
17
- uses: actions/checkout@v6
18
- uses: webiny/action-conventional-commits@v1.3.1
19
+
20
+ semantic-pr-title:
21
+ name: Semantic PR Title
22
+ runs-on: ubuntu-latest
23
+ steps:
24
+ - uses: amannn/action-semantic-pull-request@v5
25
+ env:
26
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27
+ with:
28
+ types: |
29
+ feat
30
+ fix
31
+ chore
32
+ requireScope: false
33
+ subjectPattern: ^(?![A-Z]).+$
34
+ subjectPatternError: |
35
+ The subject "{subject}" found in the pull request title "{title}"
36
+ did not match the configured pattern. Please ensure that the subject
37
+ does not start with an uppercase character.
38
+ wip: true
39
+ validateSingleCommit: false
0 commit comments