You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now the message to OneDeploy. Which is not that helpful.
POST https://<app_name>.scm.azurewebsites.net/api/deployments
{
"id": "deployment-id",
"status": 0, // Numeric status (e.g., 0 = pending, 3 = success, 4 = failed)
"message": "Deployment initiated", // A message describing the deployment
"author": "AuthorName", // Name of the person who initiated the deployment
"deployer": "DeployerName", // Optional, who performed the deployment (could be the same as the author)
"details": "Custom deployment details", // Optional, additional details for tracking
"active": false, // Whether this deployment should be set as active immediately
"log_url": "http://yourlog.com", // Optional, URL to deployment logs
"received_time": "2023-09-21T14:32:00Z", // Optional, time the deployment was received
"start_time": "2023-09-21T14:35:00Z", // Optional, when the deployment started
"end_time": "2023-09-21T14:45:00Z" // Optional, when the deployment completed
}
The text was updated successfully, but these errors were encountered:
bradyclifford
changed the title
Allow an override of the Deployment History's customMessage field
Allow an override of the Deployment History's fields
Sep 23, 2024
Allow the following fields on the
https://<app_name>.scm.azurewebsites.net/api/deployments
POST request made by this action to be overridden.Right now the
message
toOneDeploy
. Which is not that helpful.The text was updated successfully, but these errors were encountered: