Anthony Olea

Results 2 issues of Anthony Olea

Handle hooks in the `workflows.yml` file. Example: ``` demo.EXAMPLE: tasks: - EXTRACT_TASK - TRANSFORM_TASK - LOAD_TASK hooks: success: SUCCESS_TASK failure: FAILURE_TASK ```

enhancement

Consider this workflow: ``` example.CREATE_OBJECT: tasks: - CREATE_NEW_OBJECT_IF_NOT_EXIST - APPLY_CHANGES ``` - **CREATE_NEW_OBJECT_IF_NOT_EXIST**: this task may not create something if this object already exists. - **APPLY_CHANGES**: if the object already...

enhancement