Skip to content

Commit

Permalink
ci: filter md (#14713)
Browse files Browse the repository at this point in the history
  • Loading branch information
shhdgit authored Sep 4, 2023
1 parent 08af194 commit 9e6b28c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/filterUpdateFiles.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,9 @@ const handleFiles = async (fileList = []) => {
console.log(fileList);
for (let file of fileList) {
const { status, raw_url, filename, previous_filename } = file;
if (!filename.endsWith(".md")) {
continue;
}
switch (status) {
case "added":
case "modified":
Expand Down

0 comments on commit 9e6b28c

Please sign in to comment.