Skip to content

Commit

Permalink
fix: Ignore issues with locked discussions (#268)
Browse files Browse the repository at this point in the history
  • Loading branch information
BlackySoul authored Jan 16, 2024
1 parent a0ec389 commit 0439171
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VKUI/complete-publish/src/workflowHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export class WorkflowHandler {
});

return issues.reduce<number[]>((issueNumbers, issue) => {
if (issue.state_reason !== IGNORED_STATE) {
if (issue.state_reason !== IGNORED_STATE && !issue.locked) {
issueNumbers.push(issue.number);
}
return issueNumbers;
Expand Down

0 comments on commit 0439171

Please sign in to comment.