ci: Explicitly set git committer information in protobuf check (#44582)

This should hopefully fix the flakes for good.

Release Notes:

- N/A
This commit is contained in:
Finn Evers
2025-12-11 00:35:02 +01:00
committed by GitHub
parent d21628c349
commit 7c4a85f5f1
2 changed files with 4 additions and 0 deletions

View File

@@ -368,6 +368,8 @@ pub(crate) fn check_postgres_and_protobuf_migrations() -> NamedJob {
.runs_on(runners::LINUX_DEFAULT)
.add_env(("GIT_AUTHOR_NAME", "Protobuf Action"))
.add_env(("GIT_AUTHOR_EMAIL", "ci@zed.dev"))
.add_env(("GIT_COMMITTER_NAME", "Protobuf Action"))
.add_env(("GIT_COMMITTER_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())