File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ def raise_ci_warnings(self):
3939 # Gitlab Runners
4040 if environ .get ("GITLAB_CI" ) and n_commits < 50 :
4141 # Default is GIT_DEPTH of 50 for gitlab
42- logger .warning (
42+ logger .info (
4343 """
4444 Running on a gitlab runner might lead to wrong \
4545 git revision dates due to a shallow git fetch depth. \
@@ -51,7 +51,7 @@ def raise_ci_warnings(self):
5151 # Github Actions
5252 if environ .get ("GITHUB_ACTIONS" ) and n_commits == 1 :
5353 # Default is fetch-depth of 1 for github actions
54- logger .warning (
54+ logger .info (
5555 """
5656 Running on github actions might lead to wrong \
5757 git revision dates due to a shallow git fetch depth. \
@@ -63,7 +63,7 @@ def raise_ci_warnings(self):
6363 # Bitbucket pipelines
6464 if environ .get ("CI" ) and n_commits < 50 :
6565 # Default is fetch-depth of 50 for bitbucket pipelines
66- logger .warning (
66+ logger .info (
6767 """
6868 Running on bitbucket pipelines might lead to wrong \
6969 git revision dates due to a shallow git fetch depth. \
@@ -76,7 +76,7 @@ def raise_ci_warnings(self):
7676 # Azure Devops Pipeline
7777 # Does not limit fetch-depth by default
7878 if environ .get ("Agent.Source.Git.ShallowFetchDepth" , 10e99 ) < n_commits :
79- logger .warning (
79+ logger .info (
8080 """
8181 Running on Azure pipelines \
8282 with limited fetch-depth might lead to wrong git revision dates \
You can’t perform that action at this time.
0 commit comments