Skip to content

Commit

Permalink
trigger if atleast one label is missing
Browse files Browse the repository at this point in the history
  • Loading branch information
MuhaddiMu committed Sep 7, 2021
1 parent 1eb1061 commit 27f9f8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6345,7 +6345,7 @@ try {
});
} else if (
missingLabels.length === requiredLabels.length &&
missingLabels.length > 1
missingLabels.length > 0
) {
octokit.rest.issues.createComment({
issue_number: github.context.issue.number,
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ try {
});
} else if (
missingLabels.length === requiredLabels.length &&
missingLabels.length > 1
missingLabels.length > 0
) {
octokit.rest.issues.createComment({
issue_number: github.context.issue.number,
Expand Down

0 comments on commit 27f9f8f

Please # to comment.