I want a pipeline to trigger every six months. It s a compliance requirement for code scanning. So I created a schedule:
schedules:
- cron: "0 0 1 */6 *"
branches:
include:
- master
always: true
But this pipeline is triggering on every commit to master. It is my understanding that it should not. Did I not understand the scheduled trigger?