We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae8845a commit a429df2Copy full SHA for a429df2
1 file changed
.github/workflows/sync-issue-labels.yml
@@ -39,7 +39,9 @@ jobs:
39
issue_number: issueNumber,
40
});
41
42
- const issueLabels = issueResponse.data.labels.map(label => label.name);
+ const issueLabels = issueResponse.data.labels
43
+ .map(label => label.name)
44
+ .filter(label => label !== 'good first issue' && label !== 'help wanted');
45
46
if (issueLabels.length === 0) {
47
console.log(`No labels found on Issue #${issueNumber}`);
0 commit comments