-
-
Notifications
You must be signed in to change notification settings - Fork 51
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
Empty Vale Report on GitHub but not locally #75
Comments
An example of an empty report is found here: https://github.com/ros-mobile-robots/ros-mobile-robots.github.io/pull/5/checks?check_run_id=8102264712 Is there any setting I am missing? |
I had similar issues. And it seems to be related to how Line 16 in 8dd360d
And the "splatted" into an argument list here: Lines 78 to 81 in 8dd360d
So what you end up with in the end is something like this: ["--output=/lib/rdjsonl.tmpl", "--glob=\"*.{md,txt}\""] The problem with this is the glob pattern will actually include the quotes. And that obviously doesn't match anything. The solution is either of these two (at least for me): -vale_flags: --glob="*.{md,txt}"
+vale_flags: --glob=*.{md,txt} -vale_flags: --glob="*.{md,txt}"
+vale_flags: --glob *.{md,txt} |
Hi, I am trying to use the errata-ai/vale-action@reviewdog action on GHE but the output is empty:
Running Vale locally with
vale --glob='*.{md,txt}' .
results in a bunch of expected suggestions/errors in the output report.The workflow steps for Vale are:
The output of the build step is
Do you have any suggestion what might cause the empty reports or how to debug it?
To me it seems Vale is executed in a directory that contains no content files.
Is there a way to check which path is used to execute vale or to pass the
-tee
debugging option to reviewdog to debug the issue?The text was updated successfully, but these errors were encountered: