From b252a51632937f483949a6b3b387885700a0a547 Mon Sep 17 00:00:00 2001 From: Klesh Wong Date: Tue, 10 Sep 2024 16:36:38 +0800 Subject: [PATCH] fix: remove deprecated for deployment.name and deployment_commit.name (#785) --- docs/Plugins/webhook.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Plugins/webhook.md b/docs/Plugins/webhook.md index a424dba44c8..b477de83eff 100644 --- a/docs/Plugins/webhook.md +++ b/docs/Plugins/webhook.md @@ -62,7 +62,7 @@ You can copy the generated deployment curl commands to your CI/CD script to post | environment | ✖️ No | The environment this deployment happens. For example, `PRODUCTION` `STAGING` `TESTING` `DEVELOPMENT`.
The default value is `PRODUCTION` | | result | ✖️ No | deployment result, one of the values : `SUCCESS`, `FAILURE`, `ABORT`, `MANUAL`,
The default value is `SUCCESS`. | | displayTitle | ✖️ No | A readable title for the deployment. | -| name | ✖️ No | Deprecated. | +| name | ✖️ No | | | deploymentCommits.repoUrl | ✔️ Yes | The repo URL of the deployment commit
If there is a row in the domain layer table `repos` where `repos.url` equals `repo_url`, the `repoId` will be filled with `repos.id`. | | deploymentCommits.repoId | ✖️ No | Deprecated. | | deploymentCommits.refName | ✖️ No | The branch/tag to deploy
No default value. | @@ -72,7 +72,7 @@ You can copy the generated deployment curl commands to your CI/CD script to post | deploymentCommits.commitMsg | ✖️ No | Commit sha of the deployment commit message | | deploymentCommits.result | ✖️ No | The result of the deploy to this repo. The default value is 'SUCCESS' | | deploymentCommits.displayTitle | ✖️ No | A readable title for the deployment to this repo. | -| deploymentCommits.name | ✖️ No | Deprecated. | +| deploymentCommits.name | ✖️ No | | More information about these columns at the domain layer tables: [cicd_deployments](/DataModels/DevLakeDomainLayerSchema.md#cicd_deployments) and [cicd_deployment_commits](/DataModels/DevLakeDomainLayerSchema.md#cicd_deployment_commits).