Skip to content

Commit 01bb495

Browse files
committed
DINF-131: bump java-gitlab-api to 4.1.1
1 parent 707540e commit 01bb495

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<dependency>
3636
<groupId>org.gitlab</groupId>
3737
<artifactId>java-gitlab-api</artifactId>
38-
<version>4.1.0</version>
38+
<version>4.1.1</version>
3939
</dependency>
4040

4141
<dependency>

src/main/java/com/dkaedv/glghproxy/controller/ReposController.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,10 @@ public RepositoryHook addHook(@PathVariable String namespace, @PathVariable Stri
245245
false, // no note events
246246
hook.getEvents().contains("push"), // there's no differentiation for tag-pushes in the github API
247247
Constants.STRICT_SSL,
248-
null);
248+
false, // job events
249+
false, // pipeline events
250+
false, // wiki events
251+
null); // token
249252

250253
return GitlabToGithubConverter.convertHook(createdHook);
251254
}

0 commit comments

Comments
 (0)