I have following config.yml with workflows in that:
workflows:
version: 2
build_test_deploy:
jobs:
- build
- deploy_prod:
requires:
- build
filters:
branches:
only: master
But filters isn’t working for master branch. When I push to dev branch I always get running jobs for that branch too.
Anyone know what is the problem here?
PS. in dev git branch I have the same config.yml as for master and I don’t use job-level branching.