Skip to content

Commit 7a124db

Browse files
committed
.github/workflows/EditorConfig-Rules-Check.yml: Show a success message if the run was successful. Upon failure, ensure that the group is expanded by default
1 parent 45e27a8 commit 7a124db

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/EditorConfig-Rules-Check.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,13 @@ jobs:
3232
3333
- name: Run EditorConfig Checker and Show Help
3434
run: |
35-
echo "🔍 Running EditorConfig Checker..."
36-
if ! ec; then
35+
echo "::group::🔍 Running EditorConfig Checker..."
36+
37+
if ec; then
38+
echo "✅ EditorConfig Checker Success"
39+
echo "::endgroup::"
40+
else
41+
echo "::endgroup::"
3742
echo ""
3843
echo "❌ One or more files do not conform to .editorconfig rules."
3944
echo ""

0 commit comments

Comments
 (0)