Skip to content

Commit

Permalink
fix(action): excluded-member was working incorrectly
Browse files Browse the repository at this point in the history
  • Loading branch information
jd-solanki committed Sep 27, 2021
1 parent b0d82c7 commit fc844d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const hasLabel = (issue, label) => {
// If latest comment is from team member
if (doesCommentedByMember) {

if (!doesCommentedByExcludedMember) {
if (doesCommentedByExcludedMember) {
core.info("Commented by member which is excluded. Exiting.")
return
}
Expand Down

0 comments on commit fc844d8

Please sign in to comment.