Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion github/checks.go
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ func (s *ChecksService) ReRequestCheckRun(ctx context.Context, owner, repo strin
// ListCheckSuiteOptions represents parameters to list check suites.
type ListCheckSuiteOptions struct {
CheckName *string `url:"check_name,omitempty"` // Filters checks suites by the name of the check run.
AppID *int `url:"app_id,omitempty"` // Filters check suites by GitHub App id.
AppID *int64 `url:"app_id,omitempty"` // Filters check suites by GitHub App id.

ListOptions
}
Expand Down
2 changes: 1 addition & 1 deletion github/checks_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ func TestChecksService_ListCheckSuiteForRef(t *testing.T) {

opt := &ListCheckSuiteOptions{
CheckName: Ptr("testing"),
AppID: Ptr(2),
AppID: Ptr(int64(2)),
ListOptions: ListOptions{Page: 1},
}
ctx := context.Background()
Expand Down
2 changes: 1 addition & 1 deletion github/github-accessors.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion github/github-accessors_test.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading