Skip to content

Commit 0639e09

Browse files
authored
fix: keep retained branding repo out of project index
Keep iris-branding available while excluding it from generated profile listings.
1 parent fe872de commit 0639e09

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

profile/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ My personal GitHub profile is [@nmorgowicz](https://github.com/nmorgowicz). Upst
1212

1313
<!-- PROJECTS:START -->
1414

15-
**3 public projects** · ⭐ 1 star · Forks 0
15+
**2 public projects** · ⭐ 1 star · Forks 0
1616

1717
### [local-llm-foundry](https://github.com/nmorgowicz-org/local-llm-foundry)
1818

@@ -22,7 +22,7 @@ Rust · ⭐ 1 · Forks 0 · Last pushed 2026-08-19
2222

2323
### [persona-forge](https://github.com/nmorgowicz-org/persona-forge)
2424

25-
a container to run the qwen3-tts model with native intel openvino support for CPU inference
25+
Open-source voice-cloning and voice-design studio with OmniVoice accent audition, Stitch Studio, and an OpenAI-compatible TTS API.
2626

2727
Python · ⭐ 0 · Forks 0 · Last pushed 2026-08-17
2828

scripts/update-profile.mjs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,13 @@ function projectMarkdown(repository) {
4646
}
4747

4848
const repositories = (await fetchRepositories())
49-
.filter((repository) => !repository.private && !repository.archived && repository.name !== ".github")
49+
.filter(
50+
(repository) =>
51+
!repository.private &&
52+
!repository.archived &&
53+
repository.name !== ".github" &&
54+
repository.name !== "iris-branding",
55+
)
5056
.sort((left, right) => (right.pushed_at ?? "").localeCompare(left.pushed_at ?? ""));
5157

5258
const stars = repositories.reduce((total, repository) => total + repository.stargazers_count, 0);

0 commit comments

Comments
 (0)