Skip to content

Commit

Permalink
fix(travis): List tag builds from travis (#479)
Browse files Browse the repository at this point in the history
This makes it possible to manually trigger pipelines on tag builds
again.
  • Loading branch information
gardleopard authored Jul 30, 2019
1 parent 60a7f43 commit 7ed661e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ public List<GenericBuild> getTagBuilds(String repoSlug) {
includeLogFetching());
return builds.getBuilds().stream()
.filter(build -> build.getCommit().isTag())
.filter(V3Build::getLogComplete)
.filter(this::isLogReady)
.map(this::getGenericBuild)
.collect(Collectors.toList());
}
Expand Down

0 comments on commit 7ed661e

Please sign in to comment.