From b9f4069f3fa018ad03bf1baee608c882a5a2f88d Mon Sep 17 00:00:00 2001 From: Jonas Strassel Date: Sun, 12 Feb 2023 08:55:33 +0100 Subject: [PATCH] feat: show git status after git add --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 2703bd8..28a45b7 100644 --- a/action.yml +++ b/action.yml @@ -91,8 +91,8 @@ runs: rm -f docs/**/*.old* || echo 'no .old files found' if [[ `git status --porcelain` ]]; then - git status --porcelain git add docs/**/* + git status --porcelain git commit -m "chore: added to ${{ inputs.branch }}: ${{ inputs.repository }}@${{ inputs.release }}" git push fi