You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api/v3.0.0/statuses.js
+43Lines changed: 43 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,48 @@ var statuses = module.exports = {
61
61
});
62
62
};
63
63
64
+
/** section: github
65
+
* statuses#getCombined(msg, callback) -> null
66
+
* - msg (Object): Object that contains the parameters and their values to be sent to the server.
67
+
* - callback (Function): function to call when the request is finished with an error as first argument and result data as second argument.
68
+
*
69
+
* ##### Params on the `msg` object:
70
+
*
71
+
* - headers (Object): Optional. Key/ value pair of request headers to pass along with the HTTP request. Valid headers are: 'If-Modified-Since', 'If-None-Match', 'Cookie', 'User-Agent', 'Accept', 'X-GitHub-OTP'.
* - msg (Object): Object that contains the parameters and their values to be sent to the server.
@@ -75,6 +117,7 @@ var statuses = module.exports = {
75
117
* - state (String): Required. State of the status - can be one of pending, success, error, or failure. Validation rule: ` ^(pending|success|error|failure)$ `.
76
118
* - target_url (String): Optional. Target url to associate with this status. This URL will be linked from the GitHub UI to allow users to easily see the ‘source’ of the Status.
77
119
* - description (String): Optional. Short description of the status.
120
+
* - context (String): Optional. A string label to differentiate this status from the status of other systems.
0 commit comments