We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75af965 commit 8fb5f22Copy full SHA for 8fb5f22
.github/workflows/tidy3d-python-client-tests.yml
@@ -1,6 +1,7 @@
1
name: "public/tidy3d/python-client-tests"
2
3
on:
4
+ merge_group:
5
workflow_dispatch:
6
inputs:
7
remote_tests:
@@ -12,7 +13,7 @@ on:
12
13
type: boolean
14
default: false
15
push:
- branches: [ develop, latest , 'pre/*']
16
+ branches: [ develop, latest ]
17
pull_request:
18
branches:
19
- latest
@@ -105,6 +106,11 @@ jobs:
105
106
[[ "$APPROVED" == "true" ]] && remote_tests=true
107
fi
108
109
+ if [[ "$EVENT_NAME" == "merge_group" ]]; then
110
+ local_tests=true
111
+ remote_tests=true
112
+ fi
113
+
114
# If it's a push to develop
115
if [[ "$EVENT_NAME" == "push" && "$REF" == "refs/heads/develop" ]]; then
116
local_tests=true
0 commit comments