From 61f512af032f73fcc52dfdc18d9e1b31934b8e15 Mon Sep 17 00:00:00 2001 From: Finn Evers Date: Thu, 20 Nov 2025 13:48:39 +0100 Subject: [PATCH] Move protobuf action to default linux runner (#43085) Release Notes: - N/A --------- Co-authored-by: Conrad Irwin --- .github/workflows/run_tests.yml | 5 ++++- tooling/xtask/src/tasks/workflows/run_tests.rs | 4 +++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index 883be0c1905507639664e6d1f35b4c7e48d0928e..12ca53431994ee2090c9f7d83ee19ac92aa313be 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -493,7 +493,10 @@ jobs: needs: - orchestrate if: needs.orchestrate.outputs.run_tests == 'true' - runs-on: self-mini-macos + runs-on: namespace-profile-16x32-ubuntu-2204 + env: + GIT_AUTHOR_NAME: Protobuf Action + GIT_AUTHOR_EMAIL: ci@zed.dev steps: - name: steps::checkout_repo uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 diff --git a/tooling/xtask/src/tasks/workflows/run_tests.rs b/tooling/xtask/src/tasks/workflows/run_tests.rs index 31ebddc8b3dfff2bd93de7be4bce39cbb0a6195c..5894f92df88d8154ddd0eeb49b5cb4825931879a 100644 --- a/tooling/xtask/src/tasks/workflows/run_tests.rs +++ b/tooling/xtask/src/tasks/workflows/run_tests.rs @@ -363,7 +363,9 @@ pub(crate) fn check_postgres_and_protobuf_migrations() -> NamedJob { named::job( release_job(&[]) - .runs_on(runners::MAC_DEFAULT) + .runs_on(runners::LINUX_DEFAULT) + .add_env(("GIT_AUTHOR_NAME", "Protobuf Action")) + .add_env(("GIT_AUTHOR_EMAIL", "ci@zed.dev")) .add_step(steps::checkout_repo().with(("fetch-depth", 0))) // fetch full history .add_step(remove_untracked_files()) .add_step(ensure_fresh_merge())