Workflow didn't show up when trigger's been defined

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 !

Hi @davenlin19, Did you get this working? If not, please provide a link to your account (only CircleCI employees will have access). Could you also confirm that the push to Bitbucket was on the develop branch?

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.