Skip to content

Commit

Permalink
pass 'check_urls' param from #38 to new fns from #35
Browse files Browse the repository at this point in the history
  • Loading branch information
mpadge committed May 15, 2024
1 parent 70e75d4 commit 864d832
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: allcontributors
Title: Acknowledge all Contributors to a Project
Version: 0.1.1.015
Version: 0.1.1.016
Authors@R:
person("Mark", "Padgham", , "[email protected]", role = c("aut", "cre"))
Description: Acknowledge all contributors to a project via a single
Expand Down
18 changes: 10 additions & 8 deletions R/add-contributors.R
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,15 @@ add_contributors <- function (repo = ".",
all_repos <- do.call (rbind, lapply (repo, function (rep) {
one_repo <- get_contributors_one_repo (
repo = rep,
type,
exclude_label,
exclude_issues,
exclude_not_planned,
num_sections,
section_names,
format,
alphabetical
type = type,
exclude_label = exclude_label,
exclude_issues = exclude_issues,
exclude_not_planned = exclude_not_planned,
num_sections = num_sections,
section_names = section_names,
format = format,
check_urls = check_urls,
alphabetical = alphabetical
)

return (one_repo)
Expand Down Expand Up @@ -123,6 +124,7 @@ get_contributors_one_repo <- function (repo,
num_sections,
section_names,
format,
check_urls,
alphabetical) {
if (!in_git_repository (repo)) {
stop ("The path [", repo, "] does not appear to be a git repository")
Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"codeRepository": "https://github.com/ropenscilabs/allcontributors",
"issueTracker": "https://github.com/ropenscilabs/allcontributors/issues",
"license": "https://spdx.org/licenses/GPL-3.0",
"version": "0.1.1.015",
"version": "0.1.1.016",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
Expand Down

0 comments on commit 864d832

Please sign in to comment.