Skip to content

Commit c395657

Browse files
committed
fix(ci): ignore GitHub "Apply suggestion" commits in commitlint
1 parent 383b8e7 commit c395657

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ On a fresh macOS machine, install the prerequisites in this order:
8181
3. Run the NemoClaw installer.
8282

8383
This avoids the two most common first-run failures on macOS:
84+
8485
- missing developer tools needed by the installer and Node.js toolchain
8586
- Docker connection errors when no supported container runtime is installed or running
8687

commitlint.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
module.exports = {
55
extends: ["@commitlint/config-conventional"],
6+
// Skip GitHub auto-generated commits (web-UI suggestion accepts, merge commits)
7+
ignores: [(message) => /^Apply suggestion/.test(message)],
68
rules: {
79
"type-enum": [
810
2,

0 commit comments

Comments
 (0)