Skip to content

Commit a3ccc71

Browse files
committed
fix: update GitHub API calls
1 parent ee062b1 commit a3ccc71

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/index.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ class App {
4646

4747
if (lockComment) {
4848
core.debug(`Commenting (${type}: ${issue.issue_number})`);
49-
await this.client.issues.createComment({
49+
await this.client.rest.issues.createComment({
5050
...issue,
5151
body: lockComment
5252
});
5353
}
5454

5555
if (lockLabels) {
5656
core.debug(`Labeling (${type}: ${issue.issue_number})`);
57-
await this.client.issues.addLabels({
57+
await this.client.rest.issues.addLabels({
5858
...issue,
5959
labels: lockLabels
6060
});
@@ -73,7 +73,7 @@ class App {
7373
} else {
7474
params = issue;
7575
}
76-
await this.client.issues.lock(params);
76+
await this.client.rest.issues.lock(params);
7777

7878
threads.push(issue);
7979
}
@@ -109,7 +109,7 @@ class App {
109109

110110
core.debug(`Searching (${type}s)`);
111111
const results = (
112-
await this.client.search.issuesAndPullRequests({
112+
await this.client.rest.search.issuesAndPullRequests({
113113
q: query,
114114
sort: 'updated',
115115
order: 'desc',

0 commit comments

Comments
 (0)