From 6b239b33fe1cb112962249fd7a1dd958c51c60e4 Mon Sep 17 00:00:00 2001 From: Nemanja Glumac <31325167+nemanjaglumac@users.noreply.github.com> Date: Wed, 26 Oct 2022 22:31:22 +0200 Subject: [PATCH] Fix (grammar) typo --- .../actions/creating-actions/setting-exit-codes-for-actions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/actions/creating-actions/setting-exit-codes-for-actions.md b/content/actions/creating-actions/setting-exit-codes-for-actions.md index 0d23be239a..853617610f 100644 --- a/content/actions/creating-actions/setting-exit-codes-for-actions.md +++ b/content/actions/creating-actions/setting-exit-codes-for-actions.md @@ -21,7 +21,7 @@ type: how_to Exit status | Check run status | Description ------------|------------------|------------ -`0` | `success` | The action completed successfully and other tasks that depends on it can begin. +`0` | `success` | The action completed successfully and other tasks that depend on it can begin. Nonzero value (any integer but 0)| `failure` | Any other exit code indicates the action failed. When an action fails, all concurrent actions are canceled and future actions are skipped. The check run and check suite both get a `failure` status. ## Setting a failure exit code in a JavaScript action