From a3bf58d393a57da0bf7a1798a7760293910af6db Mon Sep 17 00:00:00 2001 From: Finn Evers Date: Tue, 30 Dec 2025 16:39:02 +0100 Subject: [PATCH] extension_ci: Improve title formatting (#45870) Just some minor formatting touchups I noticed after the first rollout Release Notes: - N/A --- .github/workflows/extension_workflow_rollout.yml | 4 ++-- .../xtask/src/tasks/workflows/extension_workflow_rollout.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/extension_workflow_rollout.yml b/.github/workflows/extension_workflow_rollout.yml index 0524ce4b1eb587150368cdc5f2d1a7b552aab208..424d0f7c37ac2bf214c875bcd1060a12ed4e34b7 100644 --- a/.github/workflows/extension_workflow_rollout.yml +++ b/.github/workflows/extension_workflow_rollout.yml @@ -81,11 +81,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 `zed@${{ 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 `zed@${{ 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 2e3c97e9c8a71acf9ee792328a6320c3d3ef6c8c..66dff5136e39d349330fff8a9b858a4b9d941c13 100644 --- a/tooling/xtask/src/tasks/workflows/extension_workflow_rollout.rs +++ b/tooling/xtask/src/tasks/workflows/extension_workflow_rollout.rs @@ -106,7 +106,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 `zed@{}`", short_sha); named::uses("peter-evans", "create-pull-request", "v7") .add_with(("path", "extension"))