ci: Fix merge queue trigger (#54611)

This one was supposed to run, but was accidentally skipped.

Release Notes:

- N/A
This commit is contained in:
Finn Evers 2026-04-23 09:16:02 +02:00 committed by GitHub
parent f1ce3728cf
commit 3aa173ab1c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -206,7 +206,7 @@ jobs:
clippy_linux:
needs:
- orchestrate
if: needs.orchestrate.outputs.run_tests == 'true' && github.event_name != 'merge_group'
if: needs.orchestrate.outputs.run_tests == 'true'
runs-on: namespace-profile-16x32-ubuntu-2204
env:
CC: clang

View file

@ -52,7 +52,7 @@ pub(crate) fn run_tests() -> Workflow {
.and_not_in_merge_queue()
.then(clippy(Platform::Windows, None)),
should_run_tests
.and_not_in_merge_queue()
.and_always()
.then(clippy(Platform::Linux, None)),
should_run_tests
.and_not_in_merge_queue()