chore: bootstrap independent git workflow
Some checks failed
release-smoke / macos-13 / x86_64-apple-darwin (push) Has been cancelled
release-smoke / ubuntu-latest / x86_64-unknown-linux-gnu (push) Has been cancelled
release-smoke / windows-latest / x86_64-pc-windows-msvc (push) Has been cancelled

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Paperclip CTO
2026-03-26 03:49:06 +00:00
commit 7424491944
60 changed files with 7793 additions and 0 deletions

13
scripts/git/gitea-askpass.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/sh
case "$1" in
*Username*)
printf '%s\n' "${GITEA_USERNAME:?GITEA_USERNAME is required}"
;;
*Password*)
printf '%s\n' "${GITEA_TOKEN:?GITEA_TOKEN is required}"
;;
*)
exit 1
;;
esac