From 6d0fdad454345b458915638176b9aefa0e6fd21d Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Fri, 7 Feb 2025 17:39:56 -0500 Subject: [PATCH] wrap inputs in quotes --- .github/actions/bot-commit/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/bot-commit/action.yml b/.github/actions/bot-commit/action.yml index 7f1bd61af..2b5fef1ca 100644 --- a/.github/actions/bot-commit/action.yml +++ b/.github/actions/bot-commit/action.yml @@ -10,8 +10,8 @@ runs: using: composite steps: - run: | - git config user.name $USERNAME - git config user.email $EMAIL + git config user.name "$USERNAME" + git config user.email "$EMAIL" git pull git add . git commit -m "$MESSAGE"