mirror of
				https://gitea.com/gitea/tea.git
				synced 2025-10-31 01:05:26 +01:00 
			
		
		
		
	Introduce workaround for missing pull head sha (#340)
fix #318 test with `tea pr 58` Co-authored-by: Norwin Roosen <git@nroo.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/340 Reviewed-by: Norwin <noerw@noreply.gitea.io> Reviewed-by: Andrew Thornton <art27@cantab.net> Co-authored-by: 6543 <6543@obermui.de> Co-committed-by: 6543 <6543@obermui.de>
This commit is contained in:
		| @@ -9,6 +9,7 @@ import ( | ||||
|  | ||||
| 	"code.gitea.io/tea/modules/config" | ||||
| 	local_git "code.gitea.io/tea/modules/git" | ||||
| 	"code.gitea.io/tea/modules/workaround" | ||||
|  | ||||
| 	"github.com/go-git/go-git/v5" | ||||
| 	git_plumbing "github.com/go-git/go-git/v5/plumbing" | ||||
| @@ -28,6 +29,10 @@ func PullCheckout(login *config.Login, repoOwner, repoName string, forceCreateBr | ||||
| 	if err != nil { | ||||
| 		return err | ||||
| 	} | ||||
| 	if err := workaround.FixPullHeadSha(client, pr); err != nil { | ||||
| 		return err | ||||
| 	} | ||||
|  | ||||
| 	remoteDeleted := pr.Head.Ref == fmt.Sprintf("refs/pull/%d/head", pr.Index) | ||||
| 	if remoteDeleted { | ||||
| 		return fmt.Errorf("Can't checkout: remote head branch was already deleted") | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 6543
					6543