-
Notifications
You must be signed in to change notification settings - Fork 8.6k
Fix acceptance test failures: git identity, headRepository JSON, obsolete traversal test #13037
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
6666850
be4960a
5ed8cf0
971be97
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -387,7 +387,7 @@ func IssueGraphQL(fields []string) string { | |
| case "headRepositoryOwner": | ||
| q = append(q, `headRepositoryOwner{id,login,...on User{name}}`) | ||
| case "headRepository": | ||
| q = append(q, `headRepository{id,name}`) | ||
| q = append(q, `headRepository{id,name,nameWithOwner}`) | ||
| case "assignees": | ||
|
Comment on lines
389
to
391
|
||
| q = append(q, `assignees(first:100){nodes{id,login,name,databaseId},totalCount}`) | ||
| case "assignedActors": | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Import block isn’t gofmt-sorted (third-party imports should be lexicographically ordered). As-is, the gofmt formatter (enabled in golangci-lint) will report this file; please run gofmt/goimports to normalize the import order.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well that's just not true. Our linter seems happy.