From e80198a9da3e15fe385eb7172b93591e8d5ea85a Mon Sep 17 00:00:00 2001 From: Layton Whiteley Date: Wed, 20 Oct 2021 16:50:07 +0200 Subject: [PATCH] fix: incorrect option for continue_on_error continue_on_error example was incorrect and if used would generate a warning. change `continue-on-error` to `continue_on_error` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0486a81..27d96fb 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ with: with: timeout_seconds: 15 max_attempts: 3 - continue-on-error: true + continue_on_error: true command: node -e 'process.exit(99);' - name: Assert that step succeeded (despite failing command) uses: nick-invision/assert-action@v1