ghactions icon indicating copy to clipboard operation
ghactions copied to clipboard

update is_gh_actions

Open maxheld83 opened this issue 4 years ago • 0 comments

this ain't right anymore, correct way is:

if (!identical(Sys.getenv("GITHUB_ACTIONS"), "true")) {
  return(invisible(TRUE))
} else {
  return(invisible(FALSE))
} 

maxheld83 avatar Jun 30 '20 14:06 maxheld83