I need to have following workflow:
run "beforejob" -> run jobs(job1, job2, job3) -> run "afterJob" when job1,job2, job3 are finished.
Job "afterJob" should have PASSED status only in the case if all jobs job1,job2,job3 have PASSED status.
If some of jobs job1,job2, job3 has FAILED status then "afterJob" should also have FAILED status.
It is like Join Plugin, but join plugin runs joinJob only in the case if all jobs have PASSED status.
PS.
I need it to send notification with statuses not from each job, but from one afterJob per group.