Skip to content
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

Spurious .github directory when using GitLabCI #484

Open
fedeinthemix opened this issue Sep 4, 2024 · 1 comment
Open

Spurious .github directory when using GitLabCI #484

fedeinthemix opened this issue Sep 4, 2024 · 1 comment

Comments

@fedeinthemix
Copy link

I use the following template to setup a project hosted on GitLab

using PkgTemplates

t = Template(;
             dir="~/tmp/julia",
             user="name",
             authors=["name <[email protected]>"],
             plugins=[
                 License(name="MIT"),
                 Git(),
                 GitLabCI(), #file = "gitlab-ci.yaml"),
                 Documenter{GitLabCI}(;
                     devbranch=nothing,
                     edit_link=:devbranch,
                 ),
             ],
             )

t("Example_GitLab")

After I generate the project skeleton I find a spurious .github directory

$ ls -a
.   docs  .github     .gitlab-ci.yml  Manifest.toml  README.md  test
..  .git  .gitignore  LICENSE         Project.toml   src

I suppose that it should not be there.

@oxinabox
Copy link
Collaborator

oxinabox commented Sep 4, 2024

I suspect it is needed to opt out of a few of the default options
like tagbot and dependabot if using anything other than github actions.
I wonder if we can make it do that automatically.
I guess technically one can setup to do gha for some things and another CI provider for others.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants