-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (40 loc) · 1.21 KB
/
commit-msg.yml
File metadata and controls
47 lines (40 loc) · 1.21 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
---
name: commit-msg
on:
push:
branches: [main]
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 commits with commitlint
shell: bash
run: |
set -euo pipefail
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
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 }}"
else
npm exec --yes --package=conventional-commit-msg@${COMMITLINT_PACKAGE_VERSION} -- \
conventional-commit-msg --last
fi