Skip to content

Commit 8fb5f22

Browse files
ci: Add merge_group trigger
1 parent 75af965 commit 8fb5f22

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/tidy3d-python-client-tests.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: "public/tidy3d/python-client-tests"
22

33
on:
4+
merge_group:
45
workflow_dispatch:
56
inputs:
67
remote_tests:
@@ -12,7 +13,7 @@ on:
1213
type: boolean
1314
default: false
1415
push:
15-
branches: [ develop, latest , 'pre/*']
16+
branches: [ develop, latest ]
1617
pull_request:
1718
branches:
1819
- latest
@@ -105,6 +106,11 @@ jobs:
105106
[[ "$APPROVED" == "true" ]] && remote_tests=true
106107
fi
107108
109+
if [[ "$EVENT_NAME" == "merge_group" ]]; then
110+
local_tests=true
111+
remote_tests=true
112+
fi
113+
108114
# If it's a push to develop
109115
if [[ "$EVENT_NAME" == "push" && "$REF" == "refs/heads/develop" ]]; then
110116
local_tests=true

0 commit comments

Comments
 (0)