Is it possible to execute multiple tasks from on_failure in concourse? I could not find an example in documentation or elsewhere I'd like to do something like
on_failure:
- aggregate:
- put: slack-notification
- put: mark-pr-as-failed
Is this possible or should I create a new task combining both steps above?