-
Notifications
You must be signed in to change notification settings - Fork 337
Deprecate and remove old mocking functions #1986
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
d8799cb
to
1750b4a
Compare
1750b4a
to
c967250
Compare
Code used to inform users:
```R
library(gh)
library(purrr)
library(dplyr)
packages <-tribble( Function to extract owner/repo from GitHub URLextract_repo_info <- function(url) { packages_df <- packages %>% Function to create an issuecreate_issue <- function(owner, repo) { tryCatch({ Sleep to avoid hitting rate limitsSys.sleep(.1) walk2(packages_df$owner, packages_df$repo, create_issue)
|
Issues files and emails sent again today.
```R
library(gh)
library(purrr)
library(dplyr)
packages <- tribble( Function to extract owner/repo from GitHub URLextract_repo_info <- function(url) { packages_df <- packages %>% Function to create an issuecreate_issue <- function(owner, repo) { tryCatch({ Sleep to avoid hitting rate limitsSys.sleep(.1) walk2(packages_df$owner, packages_df$repo, create_issue) to_email <- packages_df |> filter(is.na(repo)) |> pull(package) body <- paste0(gsub(" <.*?>", "", emails), ": ", names(emails))
|
No description provided.