I’m trying to set up a build to only run on changes to a specific branch.
My workflow:
workflow:
version: 2
build_dev:
jobs:
- build:
filters:
branches:
only: deploy/dev
But the build runs on every branch, not just “deploy/dev”. Am I doing something obviously wrong?
Thanks
–Steve