-
Notifications
You must be signed in to change notification settings - Fork 162
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
Add API for get single merge request, create note on merge request, get pipelines for merge request, delete for webhooks #137
Conversation
@saber-wang test failed: https://github.com/nmklotas/GitLabApiClient/pull/137/checks?check_run_id=585099995#step:9:90 What prevents on from extending Yes some of it might be empty when requesting multiple MRs, however I do not see a harm in that. |
no need to close the PR, you can just push your changes to the branch |
I don't know why the test failed
I'm just worried about misdirection |
Codecov Report
@@ Coverage Diff @@
## master #137 +/- ##
==========================================
- Coverage 71.59% 71.16% -0.43%
==========================================
Files 162 164 +2
Lines 2299 2362 +63
==========================================
+ Hits 1646 1681 +35
- Misses 653 681 +28
|
@saber-wang the test failure is pretty clear 🤔
|
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.
one nit otherwise LGTM
Codecov Report
@@ Coverage Diff @@
## master #137 +/- ##
==========================================
- Coverage 71.19% 70.84% -0.36%
==========================================
Files 169 170 +1
Lines 2350 2404 +54
==========================================
+ Hits 1673 1703 +30
- Misses 677 701 +24
|
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
|
||
namespace GitLabApiClient.Models | ||
{ | ||
public class PageQuery | ||
{ | ||
public int? Page { get; set; } | ||
public int? Per_Page { get; set; } | ||
} | ||
} |
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.
This seems unused
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.
I forgot to delete it. I'll fix it
…et pipelines for merge request, delete for webhooks (nmklotas#137) Co-Authored-By: Joseph Petersen <[email protected]>
Get single MR And Add MergeRequestDetail
Add List MR pipelines
Create Merge Request note request