slack-orb icon indicating copy to clipboard operation
slack-orb copied to clipboard

Doesn't run the notification step when circleci exits with status code > 0

Open khteh opened this issue 3 years ago • 0 comments

Orb version: 4.10.1

What happened:

I have the following workflow:

workflows:
  main:
    jobs:
      - build_deploy_buyer_vercel:
          name: BuildDeployBuyerVercel
          filters:
            branches:
              only:
                - staging
                - master
      - build_deploy_seller_vercel:
          name: BuildDeploySellerVercel
          filters:
            branches:
              only:
                - staging
                - master
      - buyer_notification:
          name: BuyerPlatformCICD
          requires:
            - BuildDeployBuyerVercel
      - seller_notification:
          name: SellerPlatformCICD
          requires:
            - BuildDeploySellerVercel

The notifications don't run at all when the requires step fails.

Expected behavior:

Notify slack channel of the real status.

Additional Information:

khteh avatar Sep 23 '22 11:09 khteh