Skip to content

Commit d467aff

Browse files
committed
Fix
1 parent 7650120 commit d467aff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/status.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ gh_app_set_commit_status <- function(repo, pkg, sha, url, universe, deployed_pac
4848
endpoint2 <- sprintf('/repos/%s/commits/%s/status', repo, sha)
4949
statuses <- gh::gh(endpoint2, .token = token)$statuses
5050
pending <- Find(function(x){
51-
return(x$state == 'pending' && x$context == sprintf('r-universe/%s//deploy', universe))
51+
return(x$state == 'pending' && x$context == context)
5252
}, statuses)
5353
if(length(pending)){
5454
print("Finalizing broken status update...")

0 commit comments

Comments
 (0)