-
-
Notifications
You must be signed in to change notification settings - Fork 70
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 self-update command #104
Conversation
Minor uint64 | ||
Patch uint64 | ||
Pre []PRVersion | ||
Build []string //No Precendence |
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.
[misspell] reported by reviewdog 🐶
"Precendence" is a misspelling of "Precedence"
// Other values are handled below. | ||
} | ||
|
||
// We don't attempt to serialise every possible value type; only those |
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.
[misspell] reported by reviewdog 🐶
"serialise" is a misspelling of "serialize"
DetailsURL *string `json:"details_url,omitempty"` // The URL of the integrator's site that has the full details of the check. (Optional.) | ||
ExternalID *string `json:"external_id,omitempty"` // A reference for the run on the integrator's system. (Optional.) | ||
Status *string `json:"status,omitempty"` // The current status. Can be one of "queued", "in_progress", or "completed". Default: "queued". (Optional.) | ||
Conclusion *string `json:"conclusion,omitempty"` // Can be one of "success", "failure", "neutral", "cancelled", "timed_out", or "action_required". (Optional. Required if you provide a status of "completed".) |
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.
[misspell] reported by reviewdog 🐶
"cancelled" is a misspelling of "canceled"
DetailsURL *string `json:"details_url,omitempty"` // The URL of the integrator's site that has the full details of the check. (Optional.) | ||
ExternalID *string `json:"external_id,omitempty"` // A reference for the run on the integrator's system. (Optional.) | ||
Status *string `json:"status,omitempty"` // The current status. Can be one of "queued", "in_progress", or "completed". Default: "queued". (Optional.) | ||
Conclusion *string `json:"conclusion,omitempty"` // Can be one of "success", "failure", "neutral", "cancelled", "timed_out", or "action_required". (Optional. Required if you provide a status of "completed".) |
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.
[misspell] reported by reviewdog 🐶
"cancelled" is a misspelling of "canceled"
// Github API docs: https://developer.github.com/v3/activity/events/types/#marketplacepurchaseevent | ||
type MarketplacePurchaseEvent struct { | ||
// Action is the action that was performed. Possible values are: | ||
// "purchased", "cancelled", "pending_change", "pending_change_cancelled", "changed". |
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.
[misspell] reported by reviewdog 🐶
"cancelled" is a misspelling of "canceled"
msg = "Over quota" | ||
case remotepb.RpcError_CAPABILITY_DISABLED: | ||
msg = "Capability disabled" | ||
case remotepb.RpcError_CANCELLED: |
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.
[misspell] reported by reviewdog 🐶
"CANCELLED" is a misspelling of "CANCELED"
RpcError_FEATURE_DISABLED RpcError_ErrorCode = 7 | ||
RpcError_BAD_REQUEST RpcError_ErrorCode = 8 | ||
RpcError_RESPONSE_TOO_LARGE RpcError_ErrorCode = 9 | ||
RpcError_CANCELLED RpcError_ErrorCode = 10 |
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.
[misspell] reported by reviewdog 🐶
"CANCELLED" is a misspelling of "CANCELED"
7: "FEATURE_DISABLED", | ||
8: "BAD_REQUEST", | ||
9: "RESPONSE_TOO_LARGE", | ||
10: "CANCELLED", |
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.
[misspell] reported by reviewdog 🐶
"CANCELLED" is a misspelling of "CANCELED"
"FEATURE_DISABLED": 7, | ||
"BAD_REQUEST": 8, | ||
"RESPONSE_TOO_LARGE": 9, | ||
"CANCELLED": 10, |
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.
[misspell] reported by reviewdog 🐶
"CANCELLED" is a misspelling of "CANCELED"
FEATURE_DISABLED = 7; | ||
BAD_REQUEST = 8; | ||
RESPONSE_TOO_LARGE = 9; | ||
CANCELLED = 10; |
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.
[misspell] reported by reviewdog 🐶
"CANCELLED" is a misspelling of "CANCELED"
Codecov Report
@@ Coverage Diff @@
## master #104 +/- ##
=======================================
Coverage 89.32% 89.32%
=======================================
Files 33 33
Lines 1668 1668
=======================================
Hits 1490 1490
Misses 134 134
Partials 44 44 |
Closes #102