Skip to content

Commit f1760be

Browse files
committed
Label an issue for triage even if a collaborator has commented on it
1 parent 6635419 commit f1760be

File tree

4 files changed

+3
-168
lines changed

4 files changed

+3
-168
lines changed

config/checkstyle/checkstyle-header.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
^\Q/*\E$
2-
^\Q * Copyright \E2015\Q the original author or authors.\E$
2+
^\Q * Copyright \E2015(-20\d\d)?\Q the original author or authors.\E$
33
^\Q *\E$
44
^\Q * Licensed under the Apache License, Version 2.0 (the "License");\E$
55
^\Q * you may not use this file except in compliance with the License.\E$

src/main/java/io/spring/issuebot/triage/CommentedByCollaboratorTriageFilter.java

-69
This file was deleted.

src/main/java/io/spring/issuebot/triage/TriageConfiguration.java

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2015 the original author or authors.
2+
* Copyright 2015-2017 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -41,10 +41,7 @@ TriageIssueListener triageIssueListener(GitHubOperations gitHubOperations,
4141
Arrays.asList(
4242
new OpenedByCollaboratorTriageFilter(
4343
gitHubProperties.getRepository().getCollaborators()),
44-
new LabelledTriageFilter(), new MilestoneAppliedTriageFilter(),
45-
new CommentedByCollaboratorTriageFilter(
46-
gitHubProperties.getRepository().getCollaborators(),
47-
gitHubOperations)),
44+
new LabelledTriageFilter(), new MilestoneAppliedTriageFilter()),
4845
new LabelApplyingTriageListener(gitHubOperations,
4946
triageProperties.getLabel()));
5047
}

src/test/java/io/spring/issuebot/triage/CommentedByCollaboratorTriageFilterTests.java

-93
This file was deleted.

0 commit comments

Comments
 (0)