Skip to content

Commit

Permalink
#918: added puzzle, removed agent from chain.
Browse files Browse the repository at this point in the history
  • Loading branch information
vkuchyn authored and rultor committed Mar 11, 2016
1 parent 71b19b5 commit 380eef2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/main/java/com/rultor/agents/Agents.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
import com.rultor.agents.daemons.StopsDaemon;
import com.rultor.agents.daemons.WipesDaemon;
import com.rultor.agents.docker.DockerExec;
import com.rultor.agents.github.ClosePullRequest;
import com.rultor.agents.github.CommentsTag;
import com.rultor.agents.github.Dephantomizes;
import com.rultor.agents.github.Question;
Expand Down Expand Up @@ -244,7 +243,6 @@ public Agent agent(final Talk talk, final Profile profile)
new KillsDaemon(TimeUnit.HOURS.toMinutes(2L)),
new StopsDaemon(),
new EndsDaemon(),
new ClosePullRequest(profile, this.github),
new EndsRequest(),
new SafeAgent(
new Tweets(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ public final class ClosePullRequestTest {
/**
* ClosePullRequest can close pull request if rebase mode.
* @throws Exception If error
* @todo #918:30min Close pull requests only for success merges, skip for
* unsuccessful. Add new instance of ClosePullRequest to agents list in
* Agents after EndRequests agent instance.
*/
@Test
public void closesPullRequestForRebaseMode() throws Exception {
Expand Down

0 comments on commit 380eef2

Please sign in to comment.