Skip to content

Commit d6dc795

Browse files
committed
Strip user tags from commit msg
1 parent 1e0492e commit d6dc795

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/deploy.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ deploy_site <- function(deploy_org = 'ropensci-docs', buildlog = Sys.getenv('BUI
1818
info <- jsonlite::read_json('info.json')
1919
commit_url <- paste0(info$repo, "/commit/", substring(info$commit$commit,1,7))
2020
commit_message <- sprintf('Render from %s (%s...)\nBuild: %s\n', commit_url,
21-
substring(trimws(info$commit$message), 1, 25), buildlog)
21+
substring(gsub('@', '', trimws(info$commit$message)), 1, 25), buildlog)
2222
pkg <- info$pkg
2323
deploy_repo <- paste0(deploy_org, "/", pkg)
2424
deploy_remote <- paste0('https://github.com/', deploy_repo)

0 commit comments

Comments
 (0)