pub async fn repos_slash_delete_deployment(
configuration: &Configuration,
owner: &str,
repo: &str,
deployment_id: i32,
) -> Result<(), Error<ReposSlashDeleteDeploymentError>>
Expand description
If the repository only has one deployment, you can delete the deployment regardless of its status. If the repository has more than one deployment, you can only delete inactive deployments. This ensures that repositories with multiple deployments will always have an active deployment. To set a deployment as inactive, you must: * Create a new deployment that is active so that the system has a record of the current state, then delete the previously active deployment. * Mark the active deployment as inactive by adding any non-successful deployment status. For more information, see "Create a deployment" and "Create a deployment status." OAuth app tokens and personal access tokens (classic) need the repo
or repo_deployment
scope to use this endpoint.