diff --git a/shell/dependabot.sh b/shell/dependabot.sh index 2b1b82e..79efd84 100644 --- a/shell/dependabot.sh +++ b/shell/dependabot.sh @@ -5,5 +5,5 @@ IS_DIRTY_DEPENDABOT=0 if [[ $(allow "$INPUT_DEPENDABOT") == "true" ]]; then IS_DIRTY_DEPENDABOT=1 - { codestyle dependabot && git add .github/dependabot.yml && git commit -a -m "๐Ÿ”„๏ธ Update Dependabot rules"; } || IS_DIRTY_DEPENDABOT=0 + { codestyle dependabot && git add .github/dependabot.yml && git commit -a -m "๐Ÿ”„๏ธ Updated Dependabot rules"; } || IS_DIRTY_DEPENDABOT=0 fi diff --git a/shell/editorconfig.sh b/shell/editorconfig.sh index 04af1fe..51a4b34 100644 --- a/shell/editorconfig.sh +++ b/shell/editorconfig.sh @@ -5,5 +5,5 @@ IS_DIRTY_EDITORCONFIG=0 if [[ $(allow "$INPUT_EDITORCONFIG") == "true" ]]; then IS_DIRTY_EDITORCONFIG=1 - { codestyle editorconfig && git add .editorconfig && git commit -a -m "๐Ÿ“– Update .editorconfig file"; } || IS_DIRTY_EDITORCONFIG=0 + { codestyle editorconfig && git add .editorconfig && git commit -a -m "๐Ÿ“– Updated .editorconfig file"; } || IS_DIRTY_EDITORCONFIG=0 fi diff --git a/shell/fix.sh b/shell/fix.sh index 3f5b359..a10859d 100644 --- a/shell/fix.sh +++ b/shell/fix.sh @@ -4,4 +4,4 @@ IS_DIRTY_CODE=1 codestyle -{ git add . && git commit -a -m "๐Ÿงน Fix style code"; } || IS_DIRTY_CODE=0 +{ git add . && git commit -a -m "๐Ÿงน Fixed code style"; } || IS_DIRTY_CODE=0