This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 50b69ecb40 etc: pre-push git hook: Also check Codeberg SSH remote.
50b69ecb40 is described below
commit 50b69ecb4017841c7663d1c1e663d8ad02a3cfa3
Author: Hilton Chain <[email protected]>
AuthorDate: Wed Jun 4 23:23:31 2025 +0800
etc: pre-push git hook: Also check Codeberg SSH remote.
* etc/git/pre-push (main): Check Codeberg SSH remote.
Fixes: #421
Change-Id: Id669259f510cf3e33cadf77a5c9eeada52a5d0dd
---
etc/git/pre-push | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/etc/git/pre-push b/etc/git/pre-push
index c876b1b6a3..2b3e6fe228 100755
--- a/etc/git/pre-push
+++ b/etc/git/pre-push
@@ -49,9 +49,14 @@ do
*.gnu.org*)
perform_checks
;;
+ # HTTPS Git remote.
*codeberg.org/guix/*)
perform_checks
;;
+ # SSH Git remote.
+ *codeberg.org:guix/*)
+ perform_checks
+ ;;
*)
exit 0
;;