-
Notifications
You must be signed in to change notification settings - Fork 16
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
Error: Conflict (HTTP 409). Failed to activate repo on Travis CI #143
Comments
Thanks! There are a few fixes in #142 but nothing related to Travis though so I suppose we missed developments in tic/travis. 😬 There'll be a break in development over the holidays, sorry. |
No problem, I'll just set it up manually this time. Thanks and happy holidays! |
Thanks, happy holidays to you too! |
One fix for tmp <- tempfile(
pattern = "hny",
tempdir(check = TRUE)
)
fs::dir_create(tmp)
create_package_project(name = "starterstestrepo",
external_setup = list(ci_activation = NULL),
folder = tmp)
fs::dir_delete(tmp) that does not create a GH repo, for that one needs something like tmp <- tempfile(
pattern = "hny",
tempdir(check = TRUE)
)
fs::dir_create(tmp)
create_package_project(name = "starterstestrepo",
external_setup = list(
git_service = "GitHub",
login = gh::gh_whoami()$login,
private = TRUE,
protocol = "ssh",
ci_activation = NULL
),
folder = tmp)
fs::dir_delete(tmp) |
The http error stems from https://docs.ropensci.org/travis/articles/travis.html -- one needs to set up an API key. I've now set it up but I'm guessing other parts of the tic/travis code will need to be updated. |
I'm getting an error from the default
create_package_project()
:If I try setting
ci_activation = NULL
I get another error:It work's if I don't include a
title =
though....Weird... now all of a sudden I can no longer reproduce the above....
And everything from
starters::start_here()
looks okay:Here's my
sessionInfo()
:The text was updated successfully, but these errors were encountered: