alstr / todo-to-issue-action

Action that converts TODO comments to GitHub issues on push.
MIT License
603 stars 115 forks source link

Action does not run on files with extension that match `filenames` but not `extensions` #194

Closed akevinge closed 1 month ago

akevinge commented 1 month ago

Version: 4.13.3

The title is a bit confusing, but here's the problem:

image

BUILD.bazel is a build spec that uses Starlark as its language. In theory, Starlark is configured for this action.

And from a quick scan of the code, this action only checks the filenames list if there is no extension. However .bazel is not a valid extension, but BUILD.bazel is a valid filename (referring to github-linguist/linguist#L6913-L6930).