Skip to content

Commit d716962

Browse files
committed
Remove backticks from AI response
1 parent 8fc1cff commit d716962

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/reusable-issue-triage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
return;
113113
}
114114
115-
const labels = response.split(',')
115+
const labels = response.replaceAll('```', '').split(',')
116116
.map(l => l.trim())
117117
.filter(l => l.length > 0);
118118

0 commit comments

Comments
 (0)