Skip to content
This repository was archived by the owner on Dec 10, 2019. It is now read-only.

Commit a5eab07

Browse files
Guillaume LecerfArgelbargel
Guillaume Lecerf
authored andcommitted
Do not apply include/exclude restrictions to tags (#103)
The UI does not make it clear that the include/exclude restrictions also apply to tags. If we set include to a specific branch, it breaks tag discovery. To be consistent with the UI, do not apply these restrictions on tags.
1 parent 270128d commit a5eab07

File tree

1 file changed

+8
-12
lines changed

1 file changed

+8
-12
lines changed

src/main/java/argelbargel/jenkins/plugins/gitlab_branch_source/SourceHeads.java

+8-12
Original file line numberDiff line numberDiff line change
@@ -146,15 +146,13 @@ private void retrieveTag(SCMSourceCriteria criteria, @Nonnull SCMHeadObserver ob
146146
}
147147

148148
private void retrieveTag(SCMSourceCriteria criteria, @Nonnull SCMHeadObserver observer, String tagName, @Nonnull TaskListener listener) throws IOException, InterruptedException {
149-
if (!source.isExcluded(tagName)) {
150-
log(listener, Messages.GitLabSCMSource_retrievingTag(tagName));
151-
try {
152-
GitlabTag tag = api().getTag(source.getProjectId(), tagName);
153-
tag.getCommit().getCommittedDate().getTime();
154-
observe(criteria, observer, tag, listener);
155-
} catch (NoSuchElementException e) {
156-
log(listener, Messages.GitLabSCMSource_removedHead(tagName));
157-
}
149+
log(listener, Messages.GitLabSCMSource_retrievingTag(tagName));
150+
try {
151+
GitlabTag tag = api().getTag(source.getProjectId(), tagName);
152+
tag.getCommit().getCommittedDate().getTime();
153+
observe(criteria, observer, tag, listener);
154+
} catch (NoSuchElementException e) {
155+
log(listener, Messages.GitLabSCMSource_removedHead(tagName));
158156
}
159157
}
160158

@@ -202,9 +200,7 @@ private void retrieveTags(@CheckForNull SCMSourceCriteria criteria, @Nonnull SCM
202200
for (GitlabTag tag : api().getTags(source.getProjectId())) {
203201
checkInterrupt();
204202

205-
if (!source.isExcluded(tag.getName())) {
206-
observe(criteria, observer, tag, listener);
207-
}
203+
observe(criteria, observer, tag, listener);
208204
}
209205
}
210206
}

0 commit comments

Comments
 (0)