Skip to content

Commit 04ab93b

Browse files
committed
Do not validate removed APIs
1 parent 7e74d3b commit 04ab93b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/validate-pr/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ async function run () {
5353
per_page: 100
5454
})
5555
if (data.length > 0) {
56-
files.push(...data.map(entry => entry.filename))
56+
files.push(...data.filter(entry => entry.status !== 'deleted').map(entry => entry.filename))
5757
page += 1
5858
} else {
5959
break

0 commit comments

Comments
 (0)