From 1fe20c3e54f6021489cd3c1f41e130bd06f42087 Mon Sep 17 00:00:00 2001 From: V-Paranoiaque Date: Wed, 24 Sep 2025 22:07:15 +0200 Subject: [PATCH] GITHUB_TYPE env var --- helm/gitea-mirror/templates/configmap.yaml | 1 + helm/gitea-mirror/values.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/helm/gitea-mirror/templates/configmap.yaml b/helm/gitea-mirror/templates/configmap.yaml index 0455d14..9c4a909 100644 --- a/helm/gitea-mirror/templates/configmap.yaml +++ b/helm/gitea-mirror/templates/configmap.yaml @@ -14,6 +14,7 @@ data: BETTER_AUTH_TRUSTED_ORIGINS: {{ $gm.core.betterAuthTrustedOrigins | quote }} # GitHub Config GITHUB_USERNAME: {{ $gm.github.username | quote }} + GITHUB_TYPE: {{ $gm.github.type | quote }} PRIVATE_REPOSITORIES: {{ $gm.github.privateRepositories | quote }} MIRROR_STARRED: {{ $gm.mirror.starred | quote }} SKIP_FORKS: {{ $gm.github.skipForks | quote }} diff --git a/helm/gitea-mirror/values.yaml b/helm/gitea-mirror/values.yaml index b0d2ff6..f711daa 100644 --- a/helm/gitea-mirror/values.yaml +++ b/helm/gitea-mirror/values.yaml @@ -122,6 +122,7 @@ gitea-mirror: github: username: "" token: "" + type: personal privateRepositories: true mirrorStarred: false skipForks: false