We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0752de8 commit 69d5622Copy full SHA for 69d5622
.github/workflows/build.yml
@@ -59,6 +59,13 @@ jobs:
59
steps:
60
- name: Checkout repository
61
uses: actions/checkout@v4
62
+ with:
63
+ fetch-depth: '0'
64
+ - name: Install gitlint
65
+ run: |
66
+ pip install gitlint==0.19.1
67
+ - name: Run gitlint
68
+ run: gitlint --commits d789f61044e63e1a00d8e9f1d4d49c8d9ffc42a9..HEAD
69
- name: Install REUSE
70
run: |
71
pip install reuse==4.0.3
.gitlint
@@ -0,0 +1,10 @@
1
+# SPDX-FileCopyrightText: Copyright (C) swift Project Community / Contributors
2
+# SPDX-License-Identifier: CC0-1.0
3
+
4
+[general]
5
+ignore=B6,B7
6
+contrib=contrib-title-conventional-commits
7
8
+### Configuring rules ###
9
+[title-max-length]
10
+line-length=100
0 commit comments