Hello,
We are using the following trigger map in our yml config.
trigger_map:
- push_branch: master
workflow: build-test-deploy-master - push_branch: release/*
workflow: build-test-deploy-release - push_branch: feature/*
workflow: build-test-pr - pull_request_target_branch: feature/*
workflow: build-test-pr-no-ui-tests - pull_request_target_branch: master
workflow: build-test-pr
When we merge master into a feature/*
branch - which has a PR open pointing to the master branch, we see two builds kicked off.
Looks like the following two conditions are triggered in the map:
- push_branch: feature/*
workflow: build-test-pr
and
- pull_request_target_branch: master
workflow: build-test-pr
Do we have the trigger map set up in a wrong way? Thanks for the help.