Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80f2c27 commit 4a6d3b4Copy full SHA for 4a6d3b4
1 file changed
.github/actions-scripts/content-changes-table-comment.js
@@ -62,7 +62,9 @@ async function main(owner, repo, baseSHA, headSHA) {
62
let markdownTable = ''
63
64
const pathPrefix = 'content/'
65
- const articleFiles = files.filter(({ filename }) => filename.startsWith(pathPrefix))
+ const articleFiles = files.filter(
66
+ ({ filename }) => filename.startsWith(pathPrefix) && filename.toLowerCase() !== 'readme.md'
67
+ )
68
69
const lines = await Promise.all(
70
articleFiles.map(async (file) => {
0 commit comments