I have an Azure Devops- pipeline that should be run each day at 3:00 on the develop - Branch. The start of the Yaml looks like this:
schedules:
- cron: "0 3 * * *"
displayName: 3 build
branches:
include:
- develop
pool:
name: default
demands: Agent.OS -equals Windows_NT
steps:
...
Now my problem is: Whenever I push changes to ANY branch the pipeline starts to run ("Individual CI for ") so not only the cron is ignored, also the branchfilter seems to be ignored.
I have no overridden Trigger setup in the DevOps - UI.
What went wrong?
(there are no branch-policies that trigger this pipeline)