You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The docs say: "column: a group number containing the column information". What is the valid format for "column information"? Is it used anywhere? Is it displayed anywhere?
The docs say "code: a group number containing the error code". Is this the exit code? Any sort of number associated with the code? Is it used anywhere?
The docs says "at least one pattern must set the message". What happens if multiple patterns set the message? Are they concatenated? Is all but the last one dropped?
The docs say "file: a group number containing the file name". Does the file name need to be absolute? Relative to the root of the repo? Relative to "fromPath" (which maybe defaults to the root of the repo)? Either absolute or relative? And what happens if the file does not exist? Or exists but not in a file touched by the PR? Or exists but only in a submodule? Or contains special characters such as "? (Empirically, this last one (or possibly non-existent file) seems to result in the file .github being chosen instead.)
The text was updated successfully, but these errors were encountered:
From this dupe issue comment: the information that the match when using fromPath needs to be a file or a directory path with trailing slash included, otherwise the path's parent folder is used (which is probably not what you want).
The file https://github.com/actions/toolkit/blob/master/docs/problem-matchers.md is missing a lot of relevant information. Here are some questions it does not answer:
"
? (Empirically, this last one (or possibly non-existent file) seems to result in the file.github
being chosen instead.)The text was updated successfully, but these errors were encountered: