Hello,
I am trying to setup jira notifier to report a failure if any of 3 parallel builds fails.
I have something like:
workflows:
version: 2
main:
jobs:
- build:
name: build-dev
environment: "dev"
- linter:
name: linter-dev
environment: "dev"
- otherbuild:
name: other-build-dev
environment: "dev"
I’d like to have notifier postep to report a failure in jira if any of those 3 fails.
post-steps:
- jira/notify:
environment: DEV
environment_type: development
job_type: build
I tried to do a placeholder job that requires all the 3 above but that is not executed if any of those 3 fails.
If I add the post-step to any of the 3 will work.