-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Update ListCheckRunsOptions with new field AppID #2236
Update ListCheckRunsOptions with new field AppID #2236
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2236 +/- ##
==========================================
+ Coverage 97.79% 97.80% +0.01%
==========================================
Files 113 113
Lines 10156 10205 +49
==========================================
+ Hits 9932 9981 +49
Misses 156 156
Partials 68 68
Continue to review full report at Codecov.
|
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.
Thank you, @rojanDinc!
Just one change, please, then we should be ready for a second LGTM before merging.
Note that any other contributor to this repo is welcome to provide the second LGTM/approval after reviewing.
Co-authored-by: Glenn Lewis <6598971+gmlewis@users.noreply.github.com>
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.
Thank you, @rojanDinc !
LGTM.
Merging after tests pass.
It looks like the tests failed. Please make sure to run |
Hi, I forgot to run tests locally once I changed |
github/checks.go
Outdated
@@ -234,6 +234,7 @@ type ListCheckRunsOptions struct { | |||
CheckName *string `url:"check_name,omitempty"` // Returns check runs with the specified name. | |||
Status *string `url:"status,omitempty"` // Returns check runs with the specified status. Can be one of "queued", "in_progress", or "completed". | |||
Filter *string `url:"filter,omitempty"` // Filters check runs by their completed_at timestamp. Can be one of "latest" (returning the most recent check runs) or "all". Default: "latest" | |||
AppID *int64 `url:"app_id,omitempty"` // Filters check runs by GitHub App ID. |
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.
Please run gofmt
on this file and push the changes.
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.
My bad. I've formatted the code hopefully everything is in place now.
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.
Thank you, @rojanDinc !
LGTM.
Merging.
#2231