Workflows not executing

Might be worth adding your config.yml to your post, in a formatted block, in case there’s any issues. Has this worked before?

My scheduled triggers have been fine. Here is my config.yml:

version: 2
jobs:
  build:
    working_directory: /app
    docker:
      - image: docker:17.05.0-ce-git
    steps:
      - checkout

    ...

# Scheduled builds
# (Format: Minute hour DOM month DOW)
workflows:
  version: 2
  commit-workflow:
    jobs:
      - build
  daily-workflow-1:
    triggers:
      - schedule:
          cron: "0 14 * * *"
          filters:
            branches:
              only:
                - master
    jobs:
      - build
  daily-workflow-2:
    triggers:
      - schedule:
          cron: "0 22 * * *"
          filters:
            branches:
              only:
                - master
    jobs:
      - build

I’ve just pushed another repo, with a different config (and no schedule triggers), and the push trigger worked in that.