Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions mkdocs_rss_plugin/git_manager/ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def raise_ci_warnings(self) -> None:
Running on a gitlab runner might lead to wrong \
git revision dates due to a shallow git fetch depth. \
Make sure to set GIT_DEPTH to 1000 in your .gitlab-ci.yml file. \
(see https://docs.gitlab.com/ee/user/project/pipelines/settings.html#git-shallow-clone).
(see https://docs.gitlab.com/user/project/repository/monorepos/#use-shallow-clones-in-cicd-processes).
"""
)

Expand All @@ -64,7 +64,7 @@ def raise_ci_warnings(self) -> None:
Running on github actions might lead to wrong \
git revision dates due to a shallow git fetch depth. \
Try setting fetch-depth to 0 in your github action \
(see https://github.com/actions/checkout).
(see https://github.com/actions/checkout?tab=readme-ov-file#fetch-all-history-for-all-tags-and-branches).
"""
)

Expand All @@ -76,7 +76,7 @@ def raise_ci_warnings(self) -> None:
Running on bitbucket pipelines might lead to wrong \
git revision dates due to a shallow git fetch depth. \
Try setting "clone: depth" to "full" in your pipeline \
(see https://support.atlassian.com/bitbucket-cloud/docs/configure-bitbucket-pipelinesyml/
(see https://support.atlassian.com/bitbucket-cloud/docs/git-clone-behavior/#Depth
and search 'depth').
"""
)
Expand Down