Skip to content

Commit

Permalink
satisfy lintr
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhoffa committed May 2, 2024
1 parent 4492b08 commit c607b17
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion R/generate_workflow_table.R
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ format_docker_v <- Vectorize(format_docker)
table_docker <- function(repo_path) {
readme <- get_gh_text_file(repo_path, file_path = "README.md")

docker_status <- readme[grepl("docker.yml|build-Docker-image-triggers.yml", readme)]
docker_action_names <- "docker.yml|build-Docker-image-triggers.yml"

docker_status <- readme[grepl(docker_action_names, readme)]

return(docker_status)
}

0 comments on commit c607b17

Please sign in to comment.