mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-25 23:04:27 +00:00
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:
parent
f1ce3728cf
commit
3aa173ab1c
2 changed files with 2 additions and 2 deletions
2
.github/workflows/run_tests.yml
vendored
2
.github/workflows/run_tests.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue