Repository "Languages" showing incorrect information #54854
-
Select Topic AreaBug BodyHello, hope you're good. I'm here to report what seems to be a bug in my perspective. During this weekend, I have worked in a POC project to show how to use F# language to create custom GitHub Actions. And indeed, I was able to make it. One can find the repository by this link: https://github.com/64J0/custom-fsharp-gh-action-and-dynamic-matrix. I have placed the custom Action code inside the Indeed, I have some HCL code outside the .github/ directory, but I'd like to see the F# being mentioned there as well. When comparing the files, I guess that the portion of the F# code is even larger than the code of HCL. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
GitHub uses Linguist to detect languages, see its troubleshooting guide. I'm pretty sure what's going on here is simply that Linguist excludes |
Beta Was this translation helpful? Give feedback.
GitHub uses Linguist to detect languages, see its troubleshooting guide.
I'm pretty sure what's going on here is simply that Linguist excludes
.github
by default as "vendored". You could use overrides in.gitattributes
to change that, but it might be better to restructure your sample action repository to look like a "normal" action repository, withaction.yml
,src/
, etc. in the root of the repository.