We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a7dff9 commit 1f380b1Copy full SHA for 1f380b1
1 file changed
.github/workflows/ci.yml
@@ -32,6 +32,20 @@ jobs:
32
fetch-depth: 0
33
- uses: wagoid/commitlint-github-action@b948419dd99f3fd78a6548d48f94e3df7f6bf3ed # v6
34
35
+ # PRs are squash-merged, so the PR title becomes the commit subject on
36
+ # master. Validate it against Conventional Commits so the squashed commit
37
+ # stays release-tool-friendly even when individual commits don't.
38
+ pr-title:
39
+ name: Lint PR Title
40
+ runs-on: ubuntu-latest
41
+ if: github.event_name == 'pull_request'
42
+ permissions:
43
+ pull-requests: read
44
+ steps:
45
+ - uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1
46
+ env:
47
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
48
+
49
test:
50
strategy:
51
fail-fast: false
0 commit comments