Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prevent triggering builds on closed PRs [DI-248] #40

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,13 @@ private void handleAction(String event,
} else if (StringUtils.equalsIgnoreCase("pull_request", event)) {

pr = getPullRequest(payload, gh);
GHIssueState state = pr.getPullRequest().getState();
nishaatr marked this conversation as resolved.
Show resolved Hide resolved

if (state == GHIssueState.CLOSED) {
LOGGER.log(Level.INFO, "Skip ''{0}'' event on closed PR", event);
nishaatr marked this conversation as resolved.
Show resolved Hide resolved
return;
}

repoName = pr.getRepository().getFullName();

LOGGER.log(Level.INFO, "Checking PR #{1} for {0}", new Object[] {repoName, pr.getNumber()});
Expand Down
Loading