From 654e9a041ed04fb29a7b7e234d646be8bb46d2ec Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Sat, 26 Jun 2021 10:20:56 -0400 Subject: [PATCH] Add message grouping (#117) --- entrypoint.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/entrypoint.sh b/entrypoint.sh index 2f47fcde..d888942e 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -2,6 +2,8 @@ set -e +echo "::group::changed-files" + git remote set-url origin "https://${INPUT_TOKEN}@github.com/${GITHUB_REPOSITORY}" echo "Getting HEAD info..." @@ -146,3 +148,5 @@ echo "::set-output name=unmerged_files::$UNMERGED" echo "::set-output name=unknown_files::$UNKNOWN" echo "::set-output name=all_changed_files::$ALL_CHANGED" echo "::set-output name=all_modified_files::$ALL_MODIFIED_FILES" + +echo "::endgroup::"