You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guides-ci-setup.md
+13
Original file line number
Diff line number
Diff line change
@@ -75,4 +75,17 @@ workflows:
75
75
- lint_commit_message: { requires: [setup] }
76
76
```
77
77
78
+
### 3rd party integrations
79
+
80
+
#### [Codemagic](https://codemagic.io/)
81
+
82
+
```yaml
83
+
#codemagic.yaml
84
+
workflows:
85
+
commitlint:
86
+
name: Lint commit message
87
+
scripts:
88
+
- npx commitlint --from=HEAD~1
89
+
```
90
+
78
91
?> Help yourself adopting a commit convention by using an interactive commit prompt. Learn how to use `@commitlint/prompt-cli` in the [Use prompt guide](guides-use-prompt.md)
0 commit comments