We've been using Bamboo YAML specs to run our build plans. We use the default repository + a linked repository in that plan. The build plan now triggers if a commit/new branch has been created in the default repository (=desired behavior), but also when the linked repository has an update (=undesired behavior). How can I disable this via YAML specs?
The Bamboo documentation does not help me, and looking at a 'normal' (non-YAML specs) build plan does not work either, since this option is not converted to YAML specs when selecting 'view as YAML specs'. It does not show in the YAML specs if the trigger of the linked repo is on or off (see attached picture).

Insert a script task that compares
bamboo.planRepository.<position>.revisiontobamboo.planRepository.<position>.previousRevision(find the correct<position>for your repository). Skip the plan build (exit 0) if the two are the same.Move away from YAML specs. They are still very limited compared to Java specs.