mirror of
https://github.com/RayLabsHQ/gitea-mirror.git
synced 2025-12-25 17:08:07 +03:00
The previous name 'skipStarredIssues' was misleading as it now skips ALL metadata (not just issues) for starred repositories. The new name 'starredCodeOnly' better reflects the actual behavior - mirroring only source code for starred repos. Changes: - Renamed skipStarredIssues → starredCodeOnly in all files - Updated UI label from "Don't fetch issues" to "Code-only mode" - Updated description to clarify it skips ALL metadata types: issues, PRs, labels, milestones, wiki, and releases - Updated database schema, types, config mapper, and all components - Updated Helm charts, CI configs, and documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
60 lines
1.2 KiB
YAML
60 lines
1.2 KiB
YAML
image:
|
|
registry: ghcr.io
|
|
repository: raylabshq/gitea-mirror
|
|
tag: ""
|
|
|
|
service:
|
|
type: ClusterIP
|
|
port: 8080
|
|
|
|
ingress:
|
|
enabled: true
|
|
className: "nginx"
|
|
hosts:
|
|
- host: ci.example.com
|
|
|
|
route:
|
|
enabled: true
|
|
forceHTTPS: true
|
|
domain: ["ci.example.com"]
|
|
gateway: "dummy-gw"
|
|
gatewayNamespace: "default"
|
|
http:
|
|
gatewaySection: "http"
|
|
https:
|
|
gatewaySection: "https"
|
|
|
|
gitea-mirror:
|
|
nodeEnv: production
|
|
core:
|
|
databaseUrl: "file:data/gitea-mirror.db"
|
|
betterAuthSecret: "dummy"
|
|
betterAuthUrl: "http://localhost:4321"
|
|
betterAuthTrustedOrigins: "http://localhost:4321"
|
|
github:
|
|
username: "ci-user"
|
|
token: "not-used-in-template"
|
|
type: "personal"
|
|
privateRepositories: true
|
|
skipForks: false
|
|
starredCodeOnly: false
|
|
gitea:
|
|
url: "https://gitea.example.com"
|
|
token: "not-used-in-template"
|
|
username: "ci-user"
|
|
organization: "github-mirrors"
|
|
visibility: "public"
|
|
mirror:
|
|
releases: true
|
|
wiki: true
|
|
metadata: true
|
|
issues: true
|
|
pullRequests: true
|
|
starred: false
|
|
automation:
|
|
schedule_enabled: true
|
|
schedule_interval: "3600"
|
|
cleanup:
|
|
enabled: true
|
|
interval: "2592000"
|