Skip to content

Commit a2f27fa

Browse files
authored
docs: remove GitLab clone depth limitation (#4105)
* docs: remove GitLab clone depth limitation See #4103 * docs: remove stage config from GitLab Let's keep the example minimal.
1 parent 2eca565 commit a2f27fa

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

docs/guides/ci-setup.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -125,17 +125,21 @@ workflows:
125125
## GitLab CI
126126
127127
```yaml
128-
stages: ['lint', 'build', 'test']
129128
lint:commit:
130129
image: registry.hub.docker.com/library/node:alpine
131-
stage: lint
130+
variables:
131+
GIT_DEPTH: 0
132132
before_script:
133133
- apk add --no-cache git
134134
- npm install --save-dev @commitlint/config-conventional @commitlint/cli
135135
script:
136136
- echo "${CI_COMMIT_MESSAGE}" | npx commitlint
137137
```
138138
139+
GitLab limits `git clone` depth to
140+
[20 commits by default](https://docs.gitlab.com/ee/ci/pipelines/settings.html#limit-the-number-of-changes-fetched-during-clone).
141+
Setting `GIT_DEPTH: 0` removes this limitation, so `commitlint` can check larger MRs.
142+
139143
## GitLab CI with pre-build container
140144

141145
```yaml
@@ -189,4 +193,4 @@ workflows:
189193

190194
> [!TIP]
191195
> Help yourself adopting a commit convention by using an interactive commit prompt.
192-
> Learn how to use `@commitlint/prompt-cli` in the [Use prompt guide](/> guides/use-prompt)
196+
> Learn how to use `@commitlint/prompt-cli` in the [Use prompt guide](/guides/use-prompt).

0 commit comments

Comments
 (0)