From 1fe8ef36f4ccc099f8a0530cff9de7823caa7f88 Mon Sep 17 00:00:00 2001 From: Dmitrii Date: Sat, 16 May 2026 00:40:26 +0300 Subject: [PATCH] fix: skip mt7902_temp repo and ignore GLSL/SCSS --- .github/workflows/languages.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/languages.yml b/.github/workflows/languages.yml index bf8eee82..cb252003 100644 --- a/.github/workflows/languages.yml +++ b/.github/workflows/languages.yml @@ -44,7 +44,8 @@ jobs: ignored = {'HTML', 'CSS', 'CMake', 'Dockerfile', 'Makefile', 'YAML', 'JSON', 'XML', 'Markdown', 'Text', 'SVG', 'Batchfile', 'PowerShell', - 'EditorConfig', 'Ini', 'TOML', 'Nix', 'C', 'SCSS'} + 'EditorConfig', 'Ini', 'TOML', 'Nix', 'SCSS', 'GLSL'} + skipped_repos = {'yawaflua/mt7902_temp'} colors = { 'C#': '#178600', 'C++': '#f34b7d', 'JavaScript': '#f1e05a', 'TypeScript': '#3178c6', 'Go': '#00ADD8', 'Python': '#3572A5', @@ -53,6 +54,8 @@ jobs: langs = {} for repo in repo_names: + if repo in skipped_repos: + continue try: req = urllib.request.Request(f"https://api.github.com/repos/{repo}/languages", headers=headers) with urllib.request.urlopen(req) as r: