From 4427cb0abf828827b47c1aa336a18356f11cc5b3 Mon Sep 17 00:00:00 2001 From: mesheets <16882600+mesheets@users.noreply.github.com> Date: Fri, 16 Feb 2024 20:42:38 -0500 Subject: [PATCH] Add a message for the automated git commit --- Update-PDFsamVersion.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Update-PDFsamVersion.ps1 b/Update-PDFsamVersion.ps1 index 3cd5a9b..d5a422f 100644 --- a/Update-PDFsamVersion.ps1 +++ b/Update-PDFsamVersion.ps1 @@ -90,8 +90,8 @@ else gh release create "$latestSourceVersionTag" "$pafAppInstaller" --title $releaseName --notes $releaseName # Commit and push the updated AppInfo.ini file - echo "Commit and push the updated AppInfo.ini file" - git commit "$appInfoFile" + echo "Commit and push the updates for $releaseName" + git commit -m "Updates for $releaseName" "$appInfoFile" git push } catch