Commit 7ae7b6b
committed
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.1 parent 8f926d3 commit 7ae7b6b
File tree
2 files changed
+4
-0
lines changed- .github/workflows
- workflow-templates
2 files changed
+4
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
125 | 125 | | |
126 | 126 | | |
127 | 127 | | |
| 128 | + | |
| 129 | + | |
128 | 130 | | |
129 | 131 | | |
130 | 132 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
126 | 126 | | |
127 | 127 | | |
128 | 128 | | |
| 129 | + | |
| 130 | + | |
129 | 131 | | |
130 | 132 | | |
131 | 133 | | |
| |||
0 commit comments