Skip to content

Commit ecd349d

Browse files
committed
Skip markdown files in validate-pr script
1 parent db5a55f commit ecd349d

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
@@ -95,7 +95,7 @@ async function run() {
9595
if (file.endsWith('eslint.config.js')) continue
9696
if (file.endsWith('package.json')) continue
9797
if (file.endsWith('package-lock.json')) continue
98-
console.log(file)
98+
if (file.endsWith('.md')) continue
9999
if (getApi(file).endsWith('_types')) {
100100
const apis = specification.endpoints
101101
.filter(endpoint => endpoint.name.split('.').filter(s => !privateNames.includes(s))[0] === getApi(file).split('.')[0])

0 commit comments

Comments
 (0)