Hidden issue templates from github giving a NOTE with devtools::check()

I am building a R package and the package is on github with ISSUE templates. However, when I run devtools::check(), I get the following note regarding the hidden issue templates that were generated by github. Any idea how to get rid of this note?

The package can be found here if needed: https://github.com/josephsdavid/tswgewrapped

checking for hidden files and directories ... NOTE
  Found the following hidden files and directories:
    .github

Thanks

1 Like

You should add things that are not meant for the package to .Rbuildignore, e.g. via

usethis::use_build_ignore(".github")
2 Likes

Thank you so much. This community has been so helpful. I have been searching for these answers on other online communities for days to no avail.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.