File tree 4 files changed +651
-5
lines changed
4 files changed +651
-5
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ plugins {
7
7
}
8
8
9
9
group = " com.hcyacg"
10
- version = " 1.4-dev-3 "
10
+ version = " 1.5 "
11
11
12
12
repositories {
13
13
mavenLocal()
Original file line number Diff line number Diff line change @@ -4,14 +4,12 @@ package com.hcyacg
4
4
import com.alibaba.fastjson.JSONArray
5
5
import com.alibaba.fastjson.JSONObject
6
6
import com.hcyacg.entity.Branch
7
- import com.hcyacg.github.Branches
7
+ import com.hcyacg.github.*
8
8
9
9
10
- import com.hcyacg.github.Commits
11
- import com.hcyacg.github.Issues
12
- import com.hcyacg.github.Releases
13
10
import entity.Issue
14
11
import entity.IssueItem
12
+ import entity.PullItem
15
13
import entity.Release
16
14
import kotlinx.coroutines.*
17
15
import net.mamoe.mirai.console.command.CommandSender
@@ -35,6 +33,7 @@ class GithubTask {
35
33
var branches = HashMap <String ,List <Branch >>()
36
34
var releases = HashMap <String ,Release >()
37
35
var issueItem = HashMap <String ,IssueItem >()
36
+ var pullItem = HashMap <String ,PullItem >()
38
37
var all: Int = 0
39
38
var taskMillisecond: Long = 5000
40
39
@@ -70,6 +69,9 @@ class GithubTask {
70
69
Issues ().checkIssuesUpdate(
71
70
projects = e
72
71
)
72
+ Pulls ().checkPullsUpdate(
73
+ projects = e
74
+ )
73
75
74
76
}
75
77
}
You can’t perform that action at this time.
0 commit comments