mirror of
https://github.com/RayLabsHQ/gitea-mirror.git
synced 2026-04-13 06:28:53 +03:00
* fix: preserve disabled repos while skipping new imports * ci: upgrade bun to 1.3.6 for test workflow
7 lines
175 B
TypeScript
7 lines
175 B
TypeScript
import type { GitRepo } from "@/types/Repository";
|
|
|
|
export function isMirrorableGitHubRepo(repo: Pick<GitRepo, "isDisabled">): boolean {
|
|
return repo.isDisabled !== true;
|
|
}
|
|
|