From 5c8f14d07c4a183b73b0e4cc91c6a6586b9857ef Mon Sep 17 00:00:00 2001 From: hubwriter Date: Tue, 30 Nov 2021 09:28:56 +0000 Subject: [PATCH] Add clarification sentence (#23174) --- content/actions/learn-github-actions/expressions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/learn-github-actions/expressions.md b/content/actions/learn-github-actions/expressions.md index 0b5f45d57c..b59a6e82ab 100644 --- a/content/actions/learn-github-actions/expressions.md +++ b/content/actions/learn-github-actions/expressions.md @@ -306,7 +306,7 @@ if: {% raw %}${{ cancelled() }}{% endraw %} ### failure -Returns `true` when any previous step of a job fails. +Returns `true` when any previous step of a job fails. If you have a chain of dependent jobs, `failure()` returns `true` if any ancestor job fails. #### Example