From 091a49d7ef519907cca4a330660a250637039240 Mon Sep 17 00:00:00 2001 From: Tyler Mayoff Date: Fri, 4 Jul 2025 22:08:37 -0400 Subject: [PATCH] executable --- .github/actions/disk_space/action.yml | 6 ++---- .github/actions/disk_space/clean.sh | 0 2 files changed, 2 insertions(+), 4 deletions(-) mode change 100644 => 100755 .github/actions/disk_space/clean.sh diff --git a/.github/actions/disk_space/action.yml b/.github/actions/disk_space/action.yml index 68726b0..f45cc15 100644 --- a/.github/actions/disk_space/action.yml +++ b/.github/actions/disk_space/action.yml @@ -15,7 +15,7 @@ runs: df -h - name: Detailed usage - if: inputs.debug + if: inputs.debug == true shell: bash run: | du -h -d3 / 2>/dev/null | sort -hr | head -n 20 || true @@ -31,12 +31,10 @@ runs: - name: Get disk usage shell: bash run: | - echo "used use%" - # df -h | grep /\$ | cut -d ' ' -f 5,9 df -h - name: Detailed usage - if: inputs.debug + if: inputs.debug == true shell: bash run: | du -h -d3 / 2>/dev/null | sort -hr | head -n 20 || true diff --git a/.github/actions/disk_space/clean.sh b/.github/actions/disk_space/clean.sh old mode 100644 new mode 100755