From d77a5afff59b45dcef7c44e328b042d59dd5df68 Mon Sep 17 00:00:00 2001 From: Daveanand Mannie Date: Mon, 6 Apr 2026 00:15:26 -0400 Subject: [PATCH] [update] post recieve hook to skip prs for now --- gitea/githooks/post-receive | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitea/githooks/post-receive b/gitea/githooks/post-receive index 9730a2b..5c981f5 100644 --- a/gitea/githooks/post-receive +++ b/gitea/githooks/post-receive @@ -1,4 +1,4 @@ #!/usr/bin/env bash echo "==== GitHub mirror start: $(date) ====" -git push --mirror +git push +refs/heads/*:refs/heads/* +refs/tags/*:refs/tags/* echo "==== GitHub mirror end: $(date) ===="