We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e74d3b commit 04ab93bCopy full SHA for 04ab93b
.github/validate-pr/index.js
@@ -53,7 +53,7 @@ async function run () {
53
per_page: 100
54
})
55
if (data.length > 0) {
56
- files.push(...data.map(entry => entry.filename))
+ files.push(...data.filter(entry => entry.status !== 'deleted').map(entry => entry.filename))
57
page += 1
58
} else {
59
break
0 commit comments