From 763d05b51fd0f0bbb6e58ffdca7bc2525f199079 Mon Sep 17 00:00:00 2001
From: Andrew Starr-Bochicchio <a.starr.b@gmail.com>
Date: Tue, 17 Sep 2024 12:09:55 -0400
Subject: [PATCH] Correctly quote variables in client gen workflow.

---
 .github/workflows/python-client-gen.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.github/workflows/python-client-gen.yml b/.github/workflows/python-client-gen.yml
index 8c9281f..dc9ac12 100644
--- a/.github/workflows/python-client-gen.yml
+++ b/.github/workflows/python-client-gen.yml
@@ -87,14 +87,14 @@ jobs:
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
       - name: Check pr_title outputs 
-        run: echo ${{ steps.pr_title_var.outputs.PR_TITLE }}
+        run: echo "${{ steps.pr_title_var.outputs.PR_TITLE }}"
 
       - name: Create Pull Request
         id: create-pr
         if: steps.add-commit-changes.outcome == 'success'
         run: |
-          export CURRENT=$(cat DO_OPENAPI_COMMIT_SHA.txt)
-          export TARGET=${{ github.event.inputs.openapi_short_sha }}
+          export CURRENT="$(cat DO_OPENAPI_COMMIT_SHA.txt)"
+          export TARGET="${{ github.event.inputs.openapi_short_sha }}"
           export TITLE="${{ steps.pr_title_var.outputs.PR_TITLE }}"
           envsubst < scripts/pr_body.md_tmpl > pr_body.md
           cat changelist.md >> pr_body.md