We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7650120 commit d467affCopy full SHA for d467aff
R/status.R
@@ -48,7 +48,7 @@ gh_app_set_commit_status <- function(repo, pkg, sha, url, universe, deployed_pac
48
endpoint2 <- sprintf('/repos/%s/commits/%s/status', repo, sha)
49
statuses <- gh::gh(endpoint2, .token = token)$statuses
50
pending <- Find(function(x){
51
- return(x$state == 'pending' && x$context == sprintf('r-universe/%s//deploy', universe))
+ return(x$state == 'pending' && x$context == context)
52
}, statuses)
53
if(length(pending)){
54
print("Finalizing broken status update...")
0 commit comments