Skip to content

Commit

Permalink
get rid of ++
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Nied <[email protected]>
  • Loading branch information
peternied committed Oct 17, 2023
1 parent 54696d4 commit a0d41af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ runs:
if [[ $maintainers_padded == *" $user "* ]]; then
echo "Approval by maintainer: $user"
maintainer_approvals="$maintainer_approvals $user"
(($approvals_count++))
approvals_count=$((approvals_count + 1))
fi
done
echo "maintainer-approvals=$maintainer_approvals" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit a0d41af

Please sign in to comment.