In the config.yml, I have one job “build” and one workflow “testprod”, in which I’d like to run the job “build” every minute.
That’s what my config.yml looks like:
version: 2
jobs:
  build:
    ...
workflows:
  version: 2
  testprod:
    triggers:
      - schedule:
          cron: "* * * * *"
          filters:
            branches:
              only:
                - develop
    jobs:
      - build
The problem is when I push to bitbucket, there is no build, no workflow in CircleCI, no error at all.
But if I remove the “triggers” part, only keep the “jobs” part. CircleCI creates a new workflow with a new build. May be there was some permission problems ?
What should I do to make it work ? Thanks !