-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (46 loc) · 1.77 KB
/
Copy pathcommit-msg.yml
File metadata and controls
55 lines (46 loc) · 1.77 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
---
name: commit-msg
# Validate on pull_request only; a post-merge --last check would choke on the
# immutable, auto-composed squash body whose lines exceed the body-length limit.
on:
pull_request:
permissions:
contents: read
jobs:
commitlint:
runs-on: ubuntu-latest
timeout-minutes: 5
env:
COMMITLINT_PACKAGE_VERSION: "1.0.3"
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "24"
- name: Cache conventional-commit-msg download
uses: actions/cache@v5
with:
path: ~/.npm
key: npm-conventional-commit-msg-${{ env.COMMITLINT_PACKAGE_VERSION }}
- name: Validate commit messages with commitlint
# A squash merge (the default) lands the PR title as main's subject; a
# rebase merge lands the PR's commits. Validate both so semantic-release
# never sees an unparseable subject on main.
shell: bash
env:
# Pass the attacker-controllable PR title via env, never inline in run: (script injection).
PR_TITLE: ${{ github.event.pull_request.title }}
run: |
set -euo pipefail
# Squash: the PR title becomes main's subject.
printf '%s\n' "$PR_TITLE" \
| npm exec --yes --package=conventional-commit-msg@${COMMITLINT_PACKAGE_VERSION} -- \
conventional-commit-msg
# Rebase: the PR's individual commits land on main.
npm exec --yes --package=conventional-commit-msg@${COMMITLINT_PACKAGE_VERSION} -- \
conventional-commit-msg \
--from "${{ github.event.pull_request.base.sha }}" \
--to "${{ github.event.pull_request.head.sha }}"