Skip to content

Commit

Permalink
docs: Improve example for composing outputs (#206)
Browse files Browse the repository at this point in the history
  • Loading branch information
yafanasiev committed Oct 10, 2022
1 parent 505e44b commit b314c1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-pr-title-preview-outputErrorMessage
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: marocchino/sticky-pull-request-comment@v2
# When the previous steps fails, the workflow would stop. By adding this
# condition you can continue the execution with the populated error message.
if: always()
if: always() && (steps.lint_pr_title.outputs.error_message != null)
with:
header: pr-title-lint-error
message: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -145,7 +145,7 @@ jobs:
- uses: marocchino/sticky-pull-request-comment@v2
# When the previous steps fails, the workflow would stop. By adding this
# condition you can continue the execution with the populated error message.
if: always()
if: always() && (steps.lint_pr_title.outputs.error_message != null)
with:
header: pr-title-lint-error
message: |
Expand Down

0 comments on commit b314c1b

Please sign in to comment.