We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad38fb5 commit b757191Copy full SHA for b757191
.github/workflows/copyright.yml
@@ -43,11 +43,10 @@ jobs:
43
if [ ! -f "$file" ]; then
44
continue
45
fi
46
-
47
- # Skip CSV, SVG files and known binary extensions
+
+ # Only check files with specific extensions
48
extension="${file##*.}"
49
- if [[ "${extension,,}" =~ ^(csv|svg|png|jpg|jpeg|gif|ico)$ ]]; then
50
- echo "ℹ️ Skipping $file (excluded file type)"
+ if ! [[ "${extension,,}" =~ ^(css|js|php|phtml|template|xml)$ ]]; then
51
52
53
0 commit comments