Skip to content

Commit

Permalink
Fix another bad variable reference
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 2a8631d commit 1a10dfe
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++))
fi
done
echo "maintainer-approvals=$maintainer_approvals" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 1a10dfe

Please sign in to comment.