From 0d3e86c01678a644b7ae0abb43393383e6bb9bec Mon Sep 17 00:00:00 2001 From: Tyler Mayoff Date: Fri, 4 Jul 2025 18:40:06 -0400 Subject: [PATCH] fixed outputs --- .github/actions/disk_space/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/disk_space/action.yml b/.github/actions/disk_space/action.yml index 3261caf..e6be5fa 100644 --- a/.github/actions/disk_space/action.yml +++ b/.github/actions/disk_space/action.yml @@ -12,8 +12,8 @@ runs: - name: Get disk usage shell: bash run: | - echo "used use%" - df -h | grep /\$ | cut -d ' ' -f 5,9 + df -h | head -n 1 | cut -d ' ' -f 3,5 + df -h | grep /\$ | cut -d ' ' -f 3,5 - name: Detailed usage shell: bash