diff --git a/.make/README.md.rsp b/.make/README.md.rsp index 0926a90e..aba6cc4b 100644 --- a/.make/README.md.rsp +++ b/.make/README.md.rsp @@ -188,14 +188,8 @@ appveyor <- function(text = FALSE) { covr <- function() { bfr <- NULL - files <- c("covr.yaml", "R-CMD-check.yaml") - for (file in file.path(".github/workflows", files)) { - if (file.exists(file)) { - bfr <- readLines(file) - break - } - } - if (!any(grepl("covr::codecov", bfr, fixed=TRUE))) return() + files <- c("test-coverage.yaml", "covr.yaml") + if (!any(file_test("-f", file.path(".github/workflows/", files)))) return() a("https://app.codecov.io/gh/%s", github_repos(), body=img("https://codecov.io/gh/%s/branch/develop/graph/badge.svg", github_repos(), alt="Coverage Status")) } %> diff --git a/NEWS.md b/NEWS.md index 1ff4a92b..59444765 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,8 @@ # Version (development version) - * ... +## Miscellaneous + + * Improved how CGroups v1 and CGroups v2 settings are queried. # Version 1.38.0 [2024-07-27]