Skip to content

Commit 04bd8d9

Browse files
hesreallyhimclaude
andcommitted
feat: filter generic "claude-code" repos from ticker, run every 3h
Repos named exactly "claude-code" are too generic for the ticker and clutter the display. Also increased the schedule frequency from every 6 hours to every 3 hours. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 13100c0 commit 04bd8d9

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/update-repo-ticker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Update Repo Ticker Data
22

33
on:
44
schedule:
5-
# Run every 6 hours
6-
- cron: '0 */6 * * *'
5+
# Run every 3 hours
6+
- cron: '0 */3 * * *'
77
workflow_dispatch: # Allow manual trigger for testing
88

99
permissions:

scripts/ticker/fetch_repo_ticker_data.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,9 @@ def fetch_repos(token: str) -> list[dict[str, Any]]:
8585

8686
repos = []
8787
for item in data.get("items", []):
88+
# Skip repos named exactly "claude-code" (too generic)
89+
if item["full_name"].split("/")[-1] == "claude-code":
90+
continue
8891
repos.append(
8992
{
9093
"full_name": item["full_name"],

0 commit comments

Comments
 (0)