diff --git a/content/actions/sharing-automations/creating-actions/metadata-syntax-for-github-actions.md b/content/actions/sharing-automations/creating-actions/metadata-syntax-for-github-actions.md index b34fcc143bcd..2115442a243f 100644 --- a/content/actions/sharing-automations/creating-actions/metadata-syntax-for-github-actions.md +++ b/content/actions/sharing-automations/creating-actions/metadata-syntax-for-github-actions.md @@ -233,6 +233,10 @@ For example, this `cleanup.js` will only run on Linux-based runners: **Required** The steps that you plan to run in this action. These can be either `run` steps or `uses` steps. +#### `runs.steps[*].continue-on-error` + +**Optional** Prevents the action from failing when a step fails. Set to `true` to allow the action to pass when this step fails. + #### `runs.steps[*].run` **Optional** The command you want to run. This can be inline or a script in your action repository: