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
Add comment to workflow re: unexpected behavior of "liskin/gh-problem-matcher-wrap" action
The "liskin/gh-problem-matcher-wrap" action is used in the "Check Shell" workflow to enhance the workflow run results
summary by applying a "problem matcher" to the output of the shellcheck tool.
This action is a wrapper around shell commands, so we would expect its `run` input to work the same as the
`jobs.<job_id>.steps[*].run` key of the GitHub Actions workflow. However, this is not the case. The commands specified
via the `jobs.<job_id>.steps[*].run` key can be split into multiple lines using the standard shell line continuation
operator. That is useful in the case of long/complex shell commands such as the one used to execute the `shell:check`
task in this workflow step. This is not possible when using "liskin/gh-problem-matcher-wrap".
A comment is added to explain this behavior.
0 commit comments