Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove deprecated for deployment.name and deployment_commit.name #785

Merged
merged 1 commit into from
Sep 10, 2024
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
4 changes: 2 additions & 2 deletions docs/Plugins/webhook.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`. <br/>The default value is `PRODUCTION` |
| result | ✖️ No | deployment result, one of the values : `SUCCESS`, `FAILURE`, `ABORT`, `MANUAL`, <br/> 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<br />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 <br/> No default value. |
Expand All @@ -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).

Expand Down
Loading