fix label name in rm-labels-on-closed

This commit is contained in:
Andrey Meshkov
2022-08-09 23:43:26 +03:00
parent e8fcd48a4f
commit e770a657a5

View File

@@ -24,7 +24,7 @@ jobs:
var issueLabels = issueLabelsRaw.data.map((el) => el.name);
const labelsToRemove = [ 'A: In progres' ];
const labelsToRemove = [ 'A: In progress' ];
for (let label of labelsToRemove) {
if (issueLabels.includes(label)) {
github.issues.removeLabel({