Skip to content

Commit a8df38c

Browse files
committed
Fix for GitBucket 4.30.0
1 parent 8a120d7 commit a8df38c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name := "gitbucket-ci-plugin"
22
organization := "io.github.gitbucket"
33
version := "1.7.0"
44
scalaVersion := "2.12.7"
5-
gitbucketVersion := "4.30.0-SNAPSHOT"
5+
gitbucketVersion := "4.30.0"
66
libraryDependencies ++= Seq(
77
"org.fusesource.jansi" % "jansi" % "1.16",
88
"org.scalatest" %% "scalatest" % "3.0.5" % "test",

src/main/scala/Plugin.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ class Plugin extends gitbucket.core.plugin.Plugin with CIService with AccountSer
6060
new Version("1.6.1"),
6161
new Version("1.6.2"),
6262
new Version("1.6.3"),
63-
new Version("1.6.4")
63+
new Version("1.6.4"),
64+
new Version("1.7.0")
6465
)
6566

6667
override val assetsMappings = Seq("/ci" -> "/gitbucket/ci/assets")

src/main/scala/io/github/gitbucket/ci/hook/CIPullRequestHook.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import org.eclipse.jgit.api.Git
1414
import profile.api._
1515

1616
class CIPullRequestHook extends PullRequestHook
17-
with PullRequestService with IssuesService with CommitsService with AccountService
17+
with PullRequestService with IssuesService with CommitsService with AccountService with WebHookService
1818
with WebHookPullRequestService with WebHookPullRequestReviewCommentService with ActivityService
1919
with RepositoryService with LabelsService with PrioritiesService with MilestonesService with CIService {
2020

0 commit comments

Comments
 (0)