From f644e0f080030d62f9f27866d13ee5ac559ee791 Mon Sep 17 00:00:00 2001 From: Alex Hemsath <57361211+nr-ahemsath@users.noreply.github.com> Date: Thu, 9 Nov 2023 09:30:03 -0800 Subject: [PATCH] Remove stray double-quote char (#2042) --- .github/workflows/publish_release_notes.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish_release_notes.yml b/.github/workflows/publish_release_notes.yml index d6cadc1d3a..d50d849a82 100644 --- a/.github/workflows/publish_release_notes.yml +++ b/.github/workflows/publish_release_notes.yml @@ -81,7 +81,7 @@ jobs: - name: Set Docs PR Branch Name run: | - cleaned_branch=$(echo "${{ github.event.inputs.agent_version }}"" | sed 's/\./-/g') + cleaned_branch=$(echo "${{ github.event.inputs.agent_version }}" | sed 's/\./-/g') echo "branch_name=dotnet-release-$cleaned_branch" echo "branch_name=dotnet-release-$cleaned_branch" >> $GITHUB_ENV shell: bash