From 01ba25f097a09ac86c5c64c416a6e80921d4eee9 Mon Sep 17 00:00:00 2001 From: Danijel Simeunovic Date: Tue, 21 Apr 2026 12:27:43 +0200 Subject: [PATCH] email notifications --- docs/REFERENCE.md | 2 ++ infra/values/base/gitea-values.yaml | 5 ++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/REFERENCE.md b/docs/REFERENCE.md index 4cf4d0a..0ba2013 100644 --- a/docs/REFERENCE.md +++ b/docs/REFERENCE.md @@ -819,6 +819,8 @@ postgresql: **Email Notifications**: Enabled (`ENABLE_NOTIFY_MAIL: true`). SMTP credentials injected via `gitea-smtp-secret` using `additionalConfigFromEnvs` with `GITEA__mailer__USER` / `GITEA__mailer__PASSWD` environment variables. +**Auto-Watch**: Disabled (`AUTO_WATCH_ON_CHANGES: false`, `AUTO_WATCH_NEW_REPOS: false`). Prevents contributors from being auto-subscribed to repo notifications on push, reducing email noise from CI bots (e.g., ai-review PR comments). Users who were already watching before this change need to manually unwatch or switch to "Only participating". + **Endpoints**: - Web UI: `https://git.forteapps.net` - SSH: port 22 (ClusterIP) diff --git a/infra/values/base/gitea-values.yaml b/infra/values/base/gitea-values.yaml index e34f256..2153b89 100644 --- a/infra/values/base/gitea-values.yaml +++ b/infra/values/base/gitea-values.yaml @@ -29,7 +29,10 @@ gitea: ALLOW_ONLY_EXTERNAL_REGISTRATION: true ENABLE_BASIC_AUTHENTICATION: true ENABLE_PASSWORD_SIGNIN_FORM: false - ENABLE_NOTIFY_MAIL: true + AUTO_WATCH_ON_CHANGES: false + AUTO_WATCH_NEW_REPOS: false + ENABLE_NOTIFY_MAIL: false + ENABLE_TIMETRACKING: false openid: ENABLE_OPENID_SIGNIN: false