Skip to content

Commit

Permalink
fix: scri[pt
Browse files Browse the repository at this point in the history
  • Loading branch information
Josephasafg committed Jun 19, 2024
1 parent 2c67c78 commit 6a3ca22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ jobs:
git fetch origin $base_branch
diff_output=$(git diff --shortstat origin/$base_branch...$head_branch)
insertions=$(diff_output | awk '{print $4 || 0}')
deletions=$(diff_output | awk '{print $6 || 0}')
insertions=$(echo $diff_output | awk '{print $4 || 0}')
deletions=$(echo $diff_output | awk '{print $6 || 0}')
changed_lines=$((insertions + deletions))
echo "changed_lines=$changed_lines" >> $GITHUB_ENV
Expand Down

0 comments on commit 6a3ca22

Please sign in to comment.