This is an automated email from the ASF dual-hosted git repository.
klesh pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake-website.git
The following commit(s) were added to refs/heads/main by this push:
new d5903ab9cc9 docs: fixing deployments query (#750)
d5903ab9cc9 is described below
commit d5903ab9cc976db172d5fb958f69487853419dfd
Author: Kelvin V. Soares <[email protected]>
AuthorDate: Mon May 27 01:01:34 2024 -0300
docs: fixing deployments query (#750)
---
docs/DataModels/DevLakeDomainLayerSchema.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/DataModels/DevLakeDomainLayerSchema.md
b/docs/DataModels/DevLakeDomainLayerSchema.md
index caa83fd5ab4..8ec803d7b18 100644
--- a/docs/DataModels/DevLakeDomainLayerSchema.md
+++ b/docs/DataModels/DevLakeDomainLayerSchema.md
@@ -589,7 +589,7 @@ A cicd_deployment_commit is a deployment in a specific
repo. A deployment may co
- Tool layer deployments: in v0.18, only the BitBucket and Bamboo plugins
collect the independent deployment entity which you can find in
table.\_tool_bitbucket_deployments and \_tool_bamboo_deploy_builds, but there
will be more in the future.
- Deployments pushed directly from webhooks
-You can query deployments from this table by `SELECT DISTINCT
cicd_deployment_id FROM cicd_deployments_commits`.
+You can query deployments from this table by `SELECT DISTINCT
cicd_deployment_id FROM cicd_deployment_commits`.
Normally, one deployment only deploy to one repo. But in some cases, one
deployment may deploy in multiple repos with different commits. In these cases,
there will be multiple pairs of deployment-commit-repo, appeared in multiple
entries in this table.