From 5e86a8d148325da6ed4b1e81c0cb4e1b28e37920 Mon Sep 17 00:00:00 2001 From: Finn Evers Date: Mon, 9 Feb 2026 21:36:40 +0100 Subject: [PATCH] extension_rollout: Improve naming for PR titles (#48815) This PR updates the names for the PRs to roll out to the extensions, as having the `zed@` prefix does not look too pretty. It also increases the concurrency of matrix jobs run to 10, as the rollout has matured by now and is safe to perform for more repositories at once. Release Notes: - N/A --- .github/workflows/extension_workflow_rollout.yml | 6 +++--- .../xtask/src/tasks/workflows/extension_workflow_rollout.rs | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/extension_workflow_rollout.yml b/.github/workflows/extension_workflow_rollout.yml index beec02e321512c1e62da8969bc7fcb8c1ff49c34..29aa8f781ce56b65be0dc16e36db8b5cd1635589 100644 --- a/.github/workflows/extension_workflow_rollout.yml +++ b/.github/workflows/extension_workflow_rollout.yml @@ -39,7 +39,7 @@ jobs: matrix: repo: ${{ fromJson(needs.fetch_extension_repos.outputs.repos) }} fail-fast: false - max-parallel: 5 + max-parallel: 10 steps: - id: generate-token name: extension_bump::generate_token @@ -133,11 +133,11 @@ jobs: uses: peter-evans/create-pull-request@v7 with: path: extension - title: Update CI workflows to `zed@${{ steps.short-sha.outputs.sha_short }}` + title: Update CI workflows to `${{ steps.short-sha.outputs.sha_short }}` body: | This PR updates the CI workflow files from the main Zed repository based on the commit zed-industries/zed@${{ github.sha }} - commit-message: Update CI workflows to `zed@${{ steps.short-sha.outputs.sha_short }}` + commit-message: Update CI workflows to `${{ steps.short-sha.outputs.sha_short }}` branch: update-workflows committer: zed-zippy[bot] <234243425+zed-zippy[bot]@users.noreply.github.com> author: zed-zippy[bot] <234243425+zed-zippy[bot]@users.noreply.github.com> diff --git a/tooling/xtask/src/tasks/workflows/extension_workflow_rollout.rs b/tooling/xtask/src/tasks/workflows/extension_workflow_rollout.rs index 0498aa4aeca84ff73fe8f4926fb1abcbfc7561e9..a9fcd6d9467cf9f5e6cf37f6f50c34b66247df23 100644 --- a/tooling/xtask/src/tasks/workflows/extension_workflow_rollout.rs +++ b/tooling/xtask/src/tasks/workflows/extension_workflow_rollout.rs @@ -168,7 +168,7 @@ fn rollout_workflows_to_extension(fetch_repos_job: &NamedJob) -> NamedJob { } fn create_pull_request(token: &StepOutput, short_sha: &StepOutput) -> Step { - let title = format!("Update CI workflows to `zed@{}`", short_sha); + let title = format!("Update CI workflows to `{short_sha}`"); named::uses("peter-evans", "create-pull-request", "v7") .add_with(("path", "extension")) @@ -234,7 +234,7 @@ fn rollout_workflows_to_extension(fetch_repos_job: &NamedJob) -> NamedJob { .strategy( Strategy::default() .fail_fast(false) - .max_parallel(5u32) + .max_parallel(10u32) .matrix(json!({ "repo": format!("${{{{ fromJson(needs.{}.outputs.repos) }}}}", fetch_repos_job.name) })),