Skip to content

Commit 61f512a

Browse files
Move protobuf action to default linux runner (zed-industries#43085)
Release Notes: - N/A --------- Co-authored-by: Conrad Irwin <conrad.irwin@gmail.com>
1 parent dd5482a commit 61f512a

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/run_tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,10 @@ jobs:
493493
needs:
494494
- orchestrate
495495
if: needs.orchestrate.outputs.run_tests == 'true'
496-
runs-on: self-mini-macos
496+
runs-on: namespace-profile-16x32-ubuntu-2204
497+
env:
498+
GIT_AUTHOR_NAME: Protobuf Action
499+
GIT_AUTHOR_EMAIL: ci@zed.dev
497500
steps:
498501
- name: steps::checkout_repo
499502
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683

tooling/xtask/src/tasks/workflows/run_tests.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,9 @@ pub(crate) fn check_postgres_and_protobuf_migrations() -> NamedJob {
363363

364364
named::job(
365365
release_job(&[])
366-
.runs_on(runners::MAC_DEFAULT)
366+
.runs_on(runners::LINUX_DEFAULT)
367+
.add_env(("GIT_AUTHOR_NAME", "Protobuf Action"))
368+
.add_env(("GIT_AUTHOR_EMAIL", "ci@zed.dev"))
367369
.add_step(steps::checkout_repo().with(("fetch-depth", 0))) // fetch full history
368370
.add_step(remove_untracked_files())
369371
.add_step(ensure_fresh_merge())

0 commit comments

Comments
 (0)