I have two work flows with opposite filters and both are run when I do a pull request. I would expect only ONE to run…
any ideas ?
workflows:
version: 2
build_and_deploy_beta:
jobs:
- build:
filters:
tags:
ignore: /^release-.*/
- deploy_beta:
requires:
- build
filters:
branches:
only: master
tags:
ignore: /^release-.*/
build_and_release:
jobs:
- build:
filters:
tags:
only: /^release-.*/
- release:
requires:
- build
filters:
tags:
only: /^release-.*/