You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
There is a need for an option in the job executor service which should cause the current task to finish with a Warning instead of an Error in case of a failing job.
Proposed solution:
Introduce an optional property (onError) in the action, which can eiter be Fail, or Warn, whereas Fail is the default:
actions:
- name: Run My Test
onError: Warn | Fail
events:
- ...
So in case of an error (non-zero status code) of any task executed by the job, we should create the finished event the following way:
There is a need for an option in the job executor service which should cause the current task to finish with a Warning instead of an Error in case of a failing job.
Proposed solution:
Introduce an optional property (
onError
) in the action, which can eiter beFail
, orWarn
, whereasFail
is the default:So in case of an error (non-zero status code) of any task executed by the job, we should create the finished event the following way:
The text was updated successfully, but these errors were encountered: