@@ -8,6 +8,7 @@ package private
8
8
import (
9
9
"fmt"
10
10
"net/http"
11
+ "strconv"
11
12
"strings"
12
13
13
14
"code.gitea.io/gitea/models"
@@ -124,6 +125,43 @@ func HookPostReceive(ctx *gitea_context.PrivateContext) {
124
125
refFullName := opts .RefFullNames [i ]
125
126
newCommitID := opts .NewCommitIDs [i ]
126
127
128
+ // post update for agit pull request
129
+ if git .SupportProcReceive && strings .HasPrefix (refFullName , git .PullPrefix ) {
130
+ if repo == nil {
131
+ repo = loadRepository (ctx , ownerName , repoName )
132
+ if ctx .Written () {
133
+ return
134
+ }
135
+ }
136
+
137
+ pullIndexStr := strings .TrimPrefix (refFullName , git .PullPrefix )
138
+ pullIndexStr = strings .Split (pullIndexStr , "/" )[0 ]
139
+ pullIndex , _ := strconv .ParseInt (pullIndexStr , 10 , 64 )
140
+ if pullIndex <= 0 {
141
+ continue
142
+ }
143
+
144
+ pr , err := models .GetPullRequestByIndex (repo .ID , pullIndex )
145
+ if err != nil && ! models .IsErrPullRequestNotExist (err ) {
146
+ log .Error ("Failed to get PR by index %v Error: %v" , pullIndex , err )
147
+ ctx .JSON (http .StatusInternalServerError , private.Response {
148
+ Err : fmt .Sprintf ("Failed to get PR by index %v Error: %v" , pullIndex , err ),
149
+ })
150
+ return
151
+ }
152
+ if pr == nil {
153
+ continue
154
+ }
155
+
156
+ results = append (results , private.HookPostReceiveBranchResult {
157
+ Message : setting .Git .PullRequestPushMessage && repo .AllowsPulls (),
158
+ Create : false ,
159
+ Branch : "" ,
160
+ URL : fmt .Sprintf ("%s/pulls/%d" , repo .HTMLURL (), pr .Index ),
161
+ })
162
+ continue
163
+ }
164
+
127
165
branch := git .RefEndName (opts .RefFullNames [i ])
128
166
129
167
// If we've pushed a branch (and not deleted it)
0 commit comments