Skip to content

Commit

Permalink
Do not auto deactive old deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
jeroen committed Nov 2, 2023
1 parent 2520325 commit ee7809a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/deployment.R
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ update_deployment_status <- function(universe, package, ref, buildlog, source_st

state <- ifelse(identical(source_status, 'failure'), 'failure', 'success')
gh::gh('POST /repos/r-universe/{universe}/deployments/{deployment_id}/statuses',
universe = universe, deployment_id = deployment$id, state = state,
universe = universe, deployment_id = deployment$id, state = state, auto_inactive = FALSE,
log_url = buildlog, description = 'Deployment to r-universe was successful!')
}

0 comments on commit ee7809a

Please sign in to comment.