File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -46,15 +46,15 @@ class App {
46
46
47
47
if ( lockComment ) {
48
48
core . debug ( `Commenting (${ type } : ${ issue . issue_number } )` ) ;
49
- await this . client . issues . createComment ( {
49
+ await this . client . rest . issues . createComment ( {
50
50
...issue ,
51
51
body : lockComment
52
52
} ) ;
53
53
}
54
54
55
55
if ( lockLabels ) {
56
56
core . debug ( `Labeling (${ type } : ${ issue . issue_number } )` ) ;
57
- await this . client . issues . addLabels ( {
57
+ await this . client . rest . issues . addLabels ( {
58
58
...issue ,
59
59
labels : lockLabels
60
60
} ) ;
@@ -73,7 +73,7 @@ class App {
73
73
} else {
74
74
params = issue ;
75
75
}
76
- await this . client . issues . lock ( params ) ;
76
+ await this . client . rest . issues . lock ( params ) ;
77
77
78
78
threads . push ( issue ) ;
79
79
}
@@ -109,7 +109,7 @@ class App {
109
109
110
110
core . debug ( `Searching (${ type } s)` ) ;
111
111
const results = (
112
- await this . client . search . issuesAndPullRequests ( {
112
+ await this . client . rest . search . issuesAndPullRequests ( {
113
113
q : query ,
114
114
sort : 'updated' ,
115
115
order : 'desc' ,
You can’t perform that action at this time.
0 commit comments