diff --git a/.github/helper/roulette.py b/.github/helper/roulette.py index 178526592f..c240443e9a 100644 --- a/.github/helper/roulette.py +++ b/.github/helper/roulette.py @@ -49,7 +49,7 @@ def is_frontend_code(file): return file.lower().endswith((".css", ".scss", ".less", ".sass", ".styl", ".js", ".ts", ".vue")) def is_docs(file): - regex = re.compile(r'\.(md|png|jpg|jpeg|csv)$|^.github|LICENSE') + regex = re.compile(r'\.(md|png|jpg|jpeg|csv|svg)$|^.github|LICENSE') return bool(regex.search(file))