File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ name: Node.js CI
33on :
44 pull_request :
55 branches : ['**']
6+ merge_group :
7+ types : [checks_requested]
68
79jobs :
810 verify_files :
3840 e2e_tests :
3941 name : Playwright Tests
4042 runs-on : ubuntu-latest
43+ if : ${{github.event.action != 'checks_requested'}}
4144 permissions :
4245 contents : read
4346
@@ -121,6 +124,7 @@ jobs:
121124 bundle_size :
122125 name : Check Bundle Size
123126 runs-on : ubuntu-latest
127+ if : ${{github.event.action != 'checks_requested'}}
124128 outputs :
125129 current_size : ${{ steps.current_size.outputs.size }}
126130 main_size : ${{ steps.main_size.outputs.size }}
@@ -183,7 +187,7 @@ jobs:
183187 deploy_and_update :
184188 name : Deploy and Update PR
185189 needs : [e2e_tests, bundle_size]
186- if : always() && github.event.pull_request.head.repo.full_name == github.repository
190+ if : ${{ always() && github.event.pull_request.head.repo.full_name == github.repository && github.event.action != 'checks_requested'}}
187191 runs-on : ubuntu-latest
188192 permissions :
189193 contents : write
Original file line number Diff line number Diff line change 77 - synchronize
88 - reopened
99 - edited
10+ merge_group :
11+ types : [checks_requested]
1012
1113jobs :
1214 verify_title :
1315 name : Verify Title
1416 runs-on : ubuntu-latest
17+ if : ${{github.event.action != 'checks_requested'}}
1518 steps :
1619 - name : Checkout
1720 uses : actions/checkout@v4
You can’t perform that action at this time.
0 commit comments