mirror of https://github.com/knative/pkg.git
				
				
				
			
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Go
		
	
	
	
| /*
 | |
| Copyright 2020 The Knative Authors
 | |
| 
 | |
| Licensed under the Apache License, Version 2.0 (the "License");
 | |
| you may not use this file except in compliance with the License.
 | |
| You may obtain a copy of the License at
 | |
| 
 | |
|     http://www.apache.org/licenses/LICENSE-2.0
 | |
| 
 | |
| Unless required by applicable law or agreed to in writing, software
 | |
| distributed under the License is distributed on an "AS IS" BASIS,
 | |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
| See the License for the specific language governing permissions and
 | |
| limitations under the License.
 | |
| */
 | |
| 
 | |
| // repo.go provides generic functions related to Repo
 | |
| 
 | |
| package ghutil
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 
 | |
| 	"github.com/google/go-github/v27/github"
 | |
| )
 | |
| 
 | |
| // ListBranches lists branchs for given repo
 | |
| func (gc *GithubClient) ListBranches(org, repo string) ([]*github.Branch, error) {
 | |
| 	genericList, err := gc.depaginate(
 | |
| 		fmt.Sprintf("listing Pull request from org %q and base %q", org, repo),
 | |
| 		maxRetryCount,
 | |
| 		&github.ListOptions{},
 | |
| 		func() ([]interface{}, *github.Response, error) {
 | |
| 			page, resp, err := gc.Client.Repositories.ListBranches(ctx, org, repo, nil)
 | |
| 			var interfaceList []interface{}
 | |
| 			if nil == err {
 | |
| 				for _, PR := range page {
 | |
| 					interfaceList = append(interfaceList, PR)
 | |
| 				}
 | |
| 			}
 | |
| 			return interfaceList, resp, err
 | |
| 		},
 | |
| 	)
 | |
| 	res := make([]*github.Branch, len(genericList))
 | |
| 	for i, elem := range genericList {
 | |
| 		res[i] = elem.(*github.Branch)
 | |
| 	}
 | |
| 	return res, err
 | |
| }
 |