Skip to content

Commit 60d2a1a

Browse files
committed
fix: ignore error when commenting on issue converted to discussion
Closes #24.
1 parent 1621939 commit 60d2a1a

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

src/index.js

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

4747
if (lockComment) {
4848
core.debug(`Commenting (${type}: ${issue.issue_number})`);
49-
await this.client.rest.issues.createComment({
50-
...issue,
51-
body: lockComment
52-
});
49+
try {
50+
await this.client.rest.issues.createComment({
51+
...issue,
52+
body: lockComment
53+
});
54+
} catch (err) {
55+
if (!/cannot be modified.*discussion/i.test(err.message)) {
56+
throw err;
57+
}
58+
}
5359
}
5460

5561
if (lockLabels) {

0 commit comments

Comments
 (0)