Skip to content

Commit 25a598a

Browse files
match release in branch name
1 parent cac8546 commit 25a598a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.circleci/config.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,12 @@ workflows:
168168
php-version: ["8.2"]
169169
magento-version: ["2.4.6-p11", "2.4.7-p6"]
170170
magento-integration-test-workflow:
171-
when: pipeline.git.branch == "main" or (pipeline.event.name == "pull_request" and pipeline.event.action == "labeled")
171+
when:
172+
or:
173+
- equal: [ main, << pipeline.git.branch >> ]
174+
- matches:
175+
pattern: ".*release.*"
176+
value: << pipeline.git.branch >>
172177
jobs:
173178
- magento-integration-test:
174179
matrix:

0 commit comments

Comments
 (0)