当前位置: 首页>>代码示例>>Golang>>正文


Golang IssueListByRepoOptions.Milestone方法代码示例

本文整理汇总了Golang中github.com/google/go-github/github.IssueListByRepoOptions.Milestone方法的典型用法代码示例。如果您正苦于以下问题:Golang IssueListByRepoOptions.Milestone方法的具体用法?Golang IssueListByRepoOptions.Milestone怎么用?Golang IssueListByRepoOptions.Milestone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在github.com/google/go-github/github.IssueListByRepoOptions的用法示例。


在下文中一共展示了IssueListByRepoOptions.Milestone方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: IssuesFilter

// Filters issues based on mileston, assignee, creatoror, labels or state.
// Pass empty strings for things that arnt to be filtered.
// Returns array of issues in order asked for.
// TODO(butlerx) filter offline issues if query of repo fails.
func IssuesFilter(repo, state, milestone, assignee, creator, sort, order string, labels []string) ([]github.Issue, error) {
	s := strings.Split(repo, "/")
	sorting := new(github.IssueListByRepoOptions)
	if len(labels) != 0 {
		sorting.Labels = labels
	}
	if state != "" {
		sorting.State = state
	}
	if milestone != "" {
		sorting.Milestone = milestone
	}
	if assignee != "" {
		sorting.Assignee = assignee
	}
	if creator != "" {
		sorting.Creator = creator
	}
	if sort != "" {
		sorting.Sort = sort
	}
	if order != "" {
		sorting.Direction = order
	}
	issues, _, err := client.Issues.ListByRepo(s[0], s[1], sorting)
	return issues, err
}
开发者ID:butlerx,项目名称:AgileGit,代码行数:31,代码来源:gitissue.go


注:本文中的github.com/google/go-github/github.IssueListByRepoOptions.Milestone方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。