Skip to content

Commit d646bf5

Browse files
ci: skip some checks in merge queue
1 parent 0aabffb commit d646bf5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
e2e_tests:
4141
name: Playwright Tests
4242
runs-on: ubuntu-latest
43+
if: ${{github.event.action != 'checks_requested'}}
4344
permissions:
4445
contents: read
4546

@@ -123,6 +124,7 @@ jobs:
123124
bundle_size:
124125
name: Check Bundle Size
125126
runs-on: ubuntu-latest
127+
if: ${{github.event.action != 'checks_requested'}}
126128
outputs:
127129
current_size: ${{ steps.current_size.outputs.size }}
128130
main_size: ${{ steps.main_size.outputs.size }}
@@ -185,7 +187,7 @@ jobs:
185187
deploy_and_update:
186188
name: Deploy and Update PR
187189
needs: [e2e_tests, bundle_size]
188-
if: always() && github.event.pull_request.head.repo.full_name == github.repository
190+
if: ${{always() && github.event.action != 'checks_requested' && github.event.pull_request.head.repo.full_name == github.repository}}
189191
runs-on: ubuntu-latest
190192
permissions:
191193
contents: write

0 commit comments

Comments
 (0)