Add Gitea integration for Telegram work mode

This commit is contained in:
2026-06-09 13:50:23 +09:00
parent 5a2c5df041
commit c7652d3ada
10 changed files with 656 additions and 5 deletions

13
scripts/gitea-askpass.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
set -eu
prompt="${1:-}"
case "$prompt" in
*Username*|*username*)
printf '%s\n' "${GITEA_USERNAME:-git}"
;;
*)
printf '%s\n' "${GITEA_TOKEN:-}"
;;
esac