Github report multiple times

The top one will never get reported, how do I get rid of it? There’s only one webhook

This is my workflows:

workflows:
  version: 2
  build-deploy:
    jobs:
      - build-job
      - deploy-job:
          requires:
            - build-job
          filters:
            branches:
              only: master

Found the solution: https://circleci.com/docs/2.0/workflows-waiting-status/