-
Notifications
You must be signed in to change notification settings - Fork 108
Open
Labels
Description
First-time user so I apologize if I am missing something.
I interactively created a new project with:
julia> using PkgTemplates
julia> Template(interactive=true)("JuliaActionsTest")
Template keywords to customize:
[press: Enter=toggle, a=all, n=none, d=done, q=abort]
[...]
[X] host ("github.com")
[...]
Select Git repository hosting service:
github.com
gitlab.com
bitbucket.org
> Other
Enter value for 'host' (default: github.com): git.mydomain.tldHowever, this was the default README.md:
# JuliaActionsTest
[](https://github.com/myusername/JuliaActionsTest.jl/actions/workflows/CI.yml?query=branch%3Amain)I assume that this is because github.com is hardcoded in the template instead of using the user-defined host:
PkgTemplates.jl/src/plugins/ci.jl
Line 66 in 3ca7778
| "https://github.com/{{{USER}}}/{{{PKG}}}.jl/actions/workflows/$(p.destination)/badge.svg?branch={{{BRANCH}}}", |
Reactions are currently unavailable