Skip to content

Commit

Permalink
Auto approve: Fixed wrong logic in check of membership
Browse files Browse the repository at this point in the history
  • Loading branch information
ToreMerkely committed Nov 13, 2023
1 parent 5540510 commit 84058e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/auto-approve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
result=$?
if [[ $result -eq 0 ]]; then
echo "User ${{ github.event.pull_request.user.login }} is a member of kosli-dev"
else
echo "User ${{ github.event.pull_request.user.login }} is not a member of kosli-dev"
exit 1
else
echo "User ${{ github.event.pull_request.user.login }} is a member of kosli-dev"
fi
- name: Get changed files
Expand Down

0 comments on commit 84058e8

Please sign in to comment.