mirror of
https://github.com/jlengrand/github-api.git
synced 2026-03-10 08:21:21 +00:00
Revert "Merge pull request #1083 from bitwiseman/issue/754"
This reverts commit837526ce5d, reversing changes made to8b3f50d4d3.
This commit is contained in:
@@ -5,6 +5,7 @@ import org.kohsuke.github.authorization.AuthorizationProvider;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.lang.reflect.Field;
|
||||
import java.net.HttpURLConnection;
|
||||
import java.net.ProtocolException;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
@@ -162,9 +163,30 @@ class GitHubHttpUrlConnectionClient extends GitHubClient {
|
||||
connection.setRequestMethod(method);
|
||||
} catch (ProtocolException e) {
|
||||
// JDK only allows one of the fixed set of verbs. Try to override that
|
||||
connection.setRequestProperty("X-HTTP-Method-Override", method);
|
||||
connection.setRequestMethod("POST");
|
||||
try {
|
||||
Field $method = HttpURLConnection.class.getDeclaredField("method");
|
||||
$method.setAccessible(true);
|
||||
$method.set(connection, method);
|
||||
} catch (Exception x) {
|
||||
throw (IOException) new IOException("Failed to set the custom verb").initCause(x);
|
||||
}
|
||||
// sun.net.www.protocol.https.DelegatingHttpsURLConnection delegates to another HttpURLConnection
|
||||
try {
|
||||
Field $delegate = connection.getClass().getDeclaredField("delegate");
|
||||
$delegate.setAccessible(true);
|
||||
Object delegate = $delegate.get(connection);
|
||||
if (delegate instanceof HttpURLConnection) {
|
||||
HttpURLConnection nested = (HttpURLConnection) delegate;
|
||||
setRequestMethod(method, nested);
|
||||
}
|
||||
} catch (NoSuchFieldException x) {
|
||||
// no problem
|
||||
} catch (IllegalAccessException x) {
|
||||
throw (IOException) new IOException("Failed to set the custom verb").initCause(x);
|
||||
}
|
||||
}
|
||||
if (!connection.getRequestMethod().equals(method))
|
||||
throw new IllegalStateException("Failed to set the request method to " + method);
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -159,9 +159,6 @@ public class GitHubWireMockRule extends WireMockMultiServerRule {
|
||||
if (server != null) {
|
||||
|
||||
server.snapshotRecord(recordSpec().forTarget(target)
|
||||
// "X-HTTP-Method-Override" is used to send http methods not supported by
|
||||
// HttpURLConnection without using hacky Java reflection techniques
|
||||
.captureHeader("X-HTTP-Method-Override")
|
||||
// "If-None-Match" header used for ETag matching for caching connections
|
||||
.captureHeader("If-None-Match")
|
||||
// "If-Modified-Since" header used for ETag matching for caching connections
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "notifications_threads_523050578",
|
||||
"request": {
|
||||
"url": "/notifications/threads/523050578",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_kohsuke_sandbox-ant_comments_46267761",
|
||||
"request": {
|
||||
"url": "/repos/kohsuke/sandbox-ant/comments/46267761",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_github-api-test_issues_1",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api-test/issues/1",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"state\":\"closed\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_bitwiseman_github-api-test-rename",
|
||||
"request": {
|
||||
"url": "/repos/bitwiseman/github-api-test-rename",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_bitwiseman_github-api-test-rename",
|
||||
"request": {
|
||||
"url": "/repos/bitwiseman/github-api-test-rename",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_bitwiseman_github-api-test-rename",
|
||||
"request": {
|
||||
"url": "/repos/bitwiseman/github-api-test-rename",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_bitwiseman_github-api-test-rename",
|
||||
"request": {
|
||||
"url": "/repos/bitwiseman/github-api-test-rename",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_bitwiseman_github-api-test-rename",
|
||||
"request": {
|
||||
"url": "/repos/bitwiseman/github-api-test-rename",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
"login": "hub4j-test-org",
|
||||
"id": 7544739,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4",
|
||||
"avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/hub4j-test-org",
|
||||
"html_url": "https://github.com/hub4j-test-org",
|
||||
@@ -105,7 +105,7 @@
|
||||
"login": "hub4j-test-org",
|
||||
"id": 7544739,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4",
|
||||
"avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/hub4j-test-org",
|
||||
"html_url": "https://github.com/hub4j-test-org",
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
"login": "bitwiseman",
|
||||
"id": 1958953,
|
||||
"node_id": "MDQ6VXNlcjE5NTg5NTM=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/1958953?v=4",
|
||||
"avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/bitwiseman",
|
||||
"html_url": "https://github.com/bitwiseman",
|
||||
@@ -23,12 +23,23 @@
|
||||
"location": "Seattle, WA, USA",
|
||||
"email": "bitwiseman@gmail.com",
|
||||
"hireable": null,
|
||||
"bio": null,
|
||||
"twitter_username": "bitwiseman",
|
||||
"public_repos": 206,
|
||||
"public_gists": 8,
|
||||
"followers": 181,
|
||||
"following": 11,
|
||||
"bio": "https://twitter.com/bitwiseman",
|
||||
"public_repos": 181,
|
||||
"public_gists": 7,
|
||||
"followers": 149,
|
||||
"following": 9,
|
||||
"created_at": "2012-07-11T20:38:33Z",
|
||||
"updated_at": "2021-04-02T21:55:29Z"
|
||||
"updated_at": "2020-03-26T21:08:45Z",
|
||||
"private_gists": 8,
|
||||
"total_private_repos": 10,
|
||||
"owned_private_repos": 0,
|
||||
"disk_usage": 33697,
|
||||
"collaborators": 0,
|
||||
"two_factor_authentication": true,
|
||||
"plan": {
|
||||
"name": "free",
|
||||
"space": 976562499,
|
||||
"collaborators": 0,
|
||||
"private_repos": 10000
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"id": "55f5d0e7-2f1f-4a8a-812c-204ea56540f7",
|
||||
"id": "e24be5d0-73bf-4748-8c79-a68eb5e2becf",
|
||||
"name": "repos_hub4j-test-org_test-labels",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/test-labels",
|
||||
@@ -14,33 +14,33 @@
|
||||
"status": 200,
|
||||
"bodyFileName": "repos_hub4j-test-org_test-labels-2.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Thu, 08 Apr 2021 20:38:59 GMT",
|
||||
"Date": "Thu, 26 Mar 2020 21:52:19 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Server": "GitHub.com",
|
||||
"Status": "200 OK",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4993",
|
||||
"X-RateLimit-Reset": "1585263138",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
"Accept-Encoding, Accept, X-Requested-With, X-GitHub-OpenAPI"
|
||||
],
|
||||
"ETag": "W/\"86fbc9276b6690bc16bd74f81c0ce45c1f5fda7db638aaa2c4bb0bcdd63da176\"",
|
||||
"ETag": "W/\"6b3e989ed9af12ce6cd75038c1664ab5\"",
|
||||
"Last-Modified": "Sun, 15 Feb 2015 14:49:09 GMT",
|
||||
"X-OAuth-Scopes": "repo, workflow",
|
||||
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4937",
|
||||
"X-RateLimit-Reset": "1617917629",
|
||||
"X-RateLimit-Used": "63",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"X-XSS-Protection": "1; mode=block",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E09C:148F:17AC74:19F151:606F69E3"
|
||||
"X-GitHub-Request-Id": "E69B:9495:1D1CC:2452B:5E7D2411"
|
||||
}
|
||||
},
|
||||
"uuid": "55f5d0e7-2f1f-4a8a-812c-204ea56540f7",
|
||||
"uuid": "e24be5d0-73bf-4748-8c79-a68eb5e2becf",
|
||||
"persistent": true,
|
||||
"insertionIndex": 2
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"id": "7896038e-2291-4a94-8ce9-ea12923353b2",
|
||||
"id": "2c942d88-1a5a-4fba-ae09-ada2a5dff83f",
|
||||
"name": "repos_hub4j-test-org_test-labels_labels",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/test-labels/labels",
|
||||
@@ -13,41 +13,41 @@
|
||||
{
|
||||
"equalToJson": "{\"color\":\"123457\",\"name\":\"test2\",\"description\":\"this is a different test\"}",
|
||||
"ignoreArrayOrder": true,
|
||||
"ignoreExtraElements": false
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"response": {
|
||||
"status": 201,
|
||||
"body": "{\"id\":2897001309,\"node_id\":\"MDU6TGFiZWwyODk3MDAxMzA5\",\"url\":\"https://api.github.com/repos/hub4j-test-org/test-labels/labels/test2\",\"name\":\"test2\",\"color\":\"123457\",\"default\":false,\"description\":\"this is a different test\"}",
|
||||
"body": "{\"id\":1937402965,\"node_id\":\"MDU6TGFiZWwxOTM3NDAyOTY1\",\"url\":\"https://api.github.com/repos/hub4j-test-org/test-labels/labels/test2\",\"name\":\"test2\",\"color\":\"123457\",\"default\":false,\"description\":\"this is a different test\"}",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Thu, 08 Apr 2021 20:39:02 GMT",
|
||||
"Date": "Thu, 26 Mar 2020 21:52:22 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Server": "GitHub.com",
|
||||
"Status": "201 Created",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4980",
|
||||
"X-RateLimit-Reset": "1585263137",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
"Accept-Encoding, Accept, X-Requested-With, X-GitHub-OpenAPI"
|
||||
],
|
||||
"ETag": "\"6bb2796b20a76d6ab8e7a147bf6b19cf6d0605587e59367c34afe06bb4786f60\"",
|
||||
"X-OAuth-Scopes": "repo, workflow",
|
||||
"ETag": "\"648a902d66c2f46f74c7b836969fdfe9\"",
|
||||
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion",
|
||||
"X-Accepted-OAuth-Scopes": "",
|
||||
"Location": "https://api.github.com/repos/hub4j-test-org/test-labels/labels/test2",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4924",
|
||||
"X-RateLimit-Reset": "1617917629",
|
||||
"X-RateLimit-Used": "76",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"X-XSS-Protection": "1; mode=block",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E09C:148F:17AD20:19F219:606F69E6",
|
||||
"Location": "https://api.github.com/repos/hub4j-test-org/test-labels/labels/test2"
|
||||
"X-GitHub-Request-Id": "E69B:9495:1D214:245B7:5E7D2416"
|
||||
}
|
||||
},
|
||||
"uuid": "7896038e-2291-4a94-8ce9-ea12923353b2",
|
||||
"uuid": "2c942d88-1a5a-4fba-ae09-ada2a5dff83f",
|
||||
"persistent": true,
|
||||
"insertionIndex": 15
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"id": "6e74fbe2-04df-4da4-bc1e-b47d70f8859f",
|
||||
"id": "3f418ea2-7ad2-4a8d-a0e0-aa8dba0bc3aa",
|
||||
"name": "repos_hub4j-test-org_test-labels_labels",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/test-labels/labels",
|
||||
@@ -13,41 +13,41 @@
|
||||
{
|
||||
"equalToJson": "{\"color\":\"123458\",\"name\":\"test2\"}",
|
||||
"ignoreArrayOrder": true,
|
||||
"ignoreExtraElements": false
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"response": {
|
||||
"status": 201,
|
||||
"body": "{\"id\":2897001319,\"node_id\":\"MDU6TGFiZWwyODk3MDAxMzE5\",\"url\":\"https://api.github.com/repos/hub4j-test-org/test-labels/labels/test2\",\"name\":\"test2\",\"color\":\"123458\",\"default\":false,\"description\":null}",
|
||||
"body": "{\"id\":1937403007,\"node_id\":\"MDU6TGFiZWwxOTM3NDAzMDA3\",\"url\":\"https://api.github.com/repos/hub4j-test-org/test-labels/labels/test2\",\"name\":\"test2\",\"color\":\"123458\",\"default\":false,\"description\":null}",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Thu, 08 Apr 2021 20:39:02 GMT",
|
||||
"Date": "Thu, 26 Mar 2020 21:52:23 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Server": "GitHub.com",
|
||||
"Status": "201 Created",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4977",
|
||||
"X-RateLimit-Reset": "1585263137",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
"Accept-Encoding, Accept, X-Requested-With, X-GitHub-OpenAPI"
|
||||
],
|
||||
"ETag": "\"7e509bb6bfb281f1384f5d57791a3d8ba047a0c3d0b85ee4fa1cbe97aed88087\"",
|
||||
"X-OAuth-Scopes": "repo, workflow",
|
||||
"ETag": "\"b44c275d6657bfc2df3d5bfe449bff8d\"",
|
||||
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion",
|
||||
"X-Accepted-OAuth-Scopes": "",
|
||||
"Location": "https://api.github.com/repos/hub4j-test-org/test-labels/labels/test2",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4921",
|
||||
"X-RateLimit-Reset": "1617917629",
|
||||
"X-RateLimit-Used": "79",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"X-XSS-Protection": "1; mode=block",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E09C:148F:17AD66:19F25F:606F69E6",
|
||||
"Location": "https://api.github.com/repos/hub4j-test-org/test-labels/labels/test2"
|
||||
"X-GitHub-Request-Id": "E69B:9495:1D220:245C5:5E7D2416"
|
||||
}
|
||||
},
|
||||
"uuid": "6e74fbe2-04df-4da4-bc1e-b47d70f8859f",
|
||||
"uuid": "3f418ea2-7ad2-4a8d-a0e0-aa8dba0bc3aa",
|
||||
"persistent": true,
|
||||
"insertionIndex": 18
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"id": "36809c63-2d61-4819-8a71-4d49c9297eea",
|
||||
"id": "2ec8e57b-45b1-417f-bc4e-6ea23334d4df",
|
||||
"name": "repos_hub4j-test-org_test-labels_labels",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/test-labels/labels",
|
||||
@@ -14,32 +14,32 @@
|
||||
"status": 200,
|
||||
"bodyFileName": "repos_hub4j-test-org_test-labels_labels-3.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Thu, 08 Apr 2021 20:38:59 GMT",
|
||||
"Date": "Thu, 26 Mar 2020 21:52:19 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Server": "GitHub.com",
|
||||
"Status": "200 OK",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4992",
|
||||
"X-RateLimit-Reset": "1585263137",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
"Accept-Encoding, Accept, X-Requested-With, X-GitHub-OpenAPI"
|
||||
],
|
||||
"ETag": "W/\"00b3a4cbf9037c3810a8853aef5c28e7847b3f6d7d8fed6d803203bbf758aedd\"",
|
||||
"X-OAuth-Scopes": "repo, workflow",
|
||||
"ETag": "W/\"e7c4fba8fbd1312b7b8bc4cac1dfbc25\"",
|
||||
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4936",
|
||||
"X-RateLimit-Reset": "1617917629",
|
||||
"X-RateLimit-Used": "64",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"X-XSS-Protection": "1; mode=block",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E09C:148F:17AC7A:19F15B:606F69E3"
|
||||
"X-GitHub-Request-Id": "E69B:9495:1D1D0:2455A:5E7D2413"
|
||||
}
|
||||
},
|
||||
"uuid": "36809c63-2d61-4819-8a71-4d49c9297eea",
|
||||
"uuid": "2ec8e57b-45b1-417f-bc4e-6ea23334d4df",
|
||||
"persistent": true,
|
||||
"insertionIndex": 3
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"id": "463b99c3-2031-488d-acf0-ab106d5d4f3d",
|
||||
"id": "95656815-d16d-4592-9678-10766659ddeb",
|
||||
"name": "repos_hub4j-test-org_test-labels_labels",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/test-labels/labels",
|
||||
@@ -13,41 +13,41 @@
|
||||
{
|
||||
"equalToJson": "{\"color\":\"123456\",\"name\":\"test\",\"description\":\"\"}",
|
||||
"ignoreArrayOrder": true,
|
||||
"ignoreExtraElements": false
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"response": {
|
||||
"status": 201,
|
||||
"body": "{\"id\":2897001281,\"node_id\":\"MDU6TGFiZWwyODk3MDAxMjgx\",\"url\":\"https://api.github.com/repos/hub4j-test-org/test-labels/labels/test\",\"name\":\"test\",\"color\":\"123456\",\"default\":false,\"description\":\"\"}",
|
||||
"body": "{\"id\":1937402918,\"node_id\":\"MDU6TGFiZWwxOTM3NDAyOTE4\",\"url\":\"https://api.github.com/repos/hub4j-test-org/test-labels/labels/test\",\"name\":\"test\",\"color\":\"123456\",\"default\":false,\"description\":\"\"}",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Thu, 08 Apr 2021 20:39:00 GMT",
|
||||
"Date": "Thu, 26 Mar 2020 21:52:19 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Server": "GitHub.com",
|
||||
"Status": "201 Created",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4990",
|
||||
"X-RateLimit-Reset": "1585263137",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
"Accept-Encoding, Accept, X-Requested-With, X-GitHub-OpenAPI"
|
||||
],
|
||||
"ETag": "\"30be2cbd89d25d27271419964a66bc1dce33812d6e0e519ff5801bb0b09b4b62\"",
|
||||
"X-OAuth-Scopes": "repo, workflow",
|
||||
"ETag": "\"48de34595ef7992c2e74e8ceb548cdfa\"",
|
||||
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion",
|
||||
"X-Accepted-OAuth-Scopes": "",
|
||||
"Location": "https://api.github.com/repos/hub4j-test-org/test-labels/labels/test",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4934",
|
||||
"X-RateLimit-Reset": "1617917629",
|
||||
"X-RateLimit-Used": "66",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"X-XSS-Protection": "1; mode=block",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E09C:148F:17AC80:19F168:606F69E4",
|
||||
"Location": "https://api.github.com/repos/hub4j-test-org/test-labels/labels/test"
|
||||
"X-GitHub-Request-Id": "E69B:9495:1D1D9:24565:5E7D2413"
|
||||
}
|
||||
},
|
||||
"uuid": "463b99c3-2031-488d-acf0-ab106d5d4f3d",
|
||||
"uuid": "95656815-d16d-4592-9678-10766659ddeb",
|
||||
"persistent": true,
|
||||
"insertionIndex": 5
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"id": "8e6459a2-d1f8-4e7b-a9dd-542cb0c954ef",
|
||||
"id": "2b5a3df5-478a-4539-b5ff-a1aa27b6a164",
|
||||
"name": "repos_hub4j-test-org_test-labels_labels_enhancement",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/test-labels/labels/enhancement",
|
||||
@@ -14,33 +14,33 @@
|
||||
"status": 200,
|
||||
"body": "{\"id\":177339106,\"node_id\":\"MDU6TGFiZWwxNzczMzkxMDY=\",\"url\":\"https://api.github.com/repos/hub4j-test-org/test-labels/labels/enhancement\",\"name\":\"enhancement\",\"color\":\"84b6eb\",\"default\":true,\"description\":null}",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Thu, 08 Apr 2021 20:38:59 GMT",
|
||||
"Date": "Thu, 26 Mar 2020 21:52:19 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Server": "GitHub.com",
|
||||
"Status": "200 OK",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4991",
|
||||
"X-RateLimit-Reset": "1585263137",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
"Accept-Encoding, Accept, X-Requested-With, X-GitHub-OpenAPI"
|
||||
],
|
||||
"ETag": "W/\"14222d412fe9506e0624aa60cf0d1b9ba356bae0032bdb63f80dcb0bf75d74fd\"",
|
||||
"ETag": "W/\"27ddcfc35bfde213e1754cfc9af09e7b\"",
|
||||
"Last-Modified": "Sun, 15 Feb 2015 14:49:10 GMT",
|
||||
"X-OAuth-Scopes": "repo, workflow",
|
||||
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4935",
|
||||
"X-RateLimit-Reset": "1617917629",
|
||||
"X-RateLimit-Used": "65",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"X-XSS-Protection": "1; mode=block",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E09C:148F:17AC7E:19F160:606F69E3"
|
||||
"X-GitHub-Request-Id": "E69B:9495:1D1D4:24561:5E7D2413"
|
||||
}
|
||||
},
|
||||
"uuid": "8e6459a2-d1f8-4e7b-a9dd-542cb0c954ef",
|
||||
"uuid": "2b5a3df5-478a-4539-b5ff-a1aa27b6a164",
|
||||
"persistent": true,
|
||||
"insertionIndex": 4
|
||||
}
|
||||
@@ -1,13 +1,10 @@
|
||||
{
|
||||
"id": "d17664b2-c30b-4d25-b10e-a5d14ce27509",
|
||||
"id": "cfabb012-1a36-4232-8f6d-e7d3f35673e3",
|
||||
"name": "repos_hub4j-test-org_test-labels_labels_test",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/test-labels/labels/test",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
@@ -16,40 +13,40 @@
|
||||
{
|
||||
"equalToJson": "{\"color\":\"000000\",\"name\":\"test\",\"description\":\"Deprecated\"}",
|
||||
"ignoreArrayOrder": true,
|
||||
"ignoreExtraElements": false
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"body": "{\"id\":2897001281,\"node_id\":\"MDU6TGFiZWwyODk3MDAxMjgx\",\"url\":\"https://api.github.com/repos/hub4j-test-org/test-labels/labels/test\",\"name\":\"test\",\"color\":\"000000\",\"default\":false,\"description\":\"Deprecated\"}",
|
||||
"body": "{\"id\":1937402918,\"node_id\":\"MDU6TGFiZWwxOTM3NDAyOTE4\",\"url\":\"https://api.github.com/repos/hub4j-test-org/test-labels/labels/test\",\"name\":\"test\",\"color\":\"000000\",\"default\":false,\"description\":\"Deprecated\"}",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Thu, 08 Apr 2021 20:39:01 GMT",
|
||||
"Date": "Thu, 26 Mar 2020 21:52:20 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Server": "GitHub.com",
|
||||
"Status": "200 OK",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4985",
|
||||
"X-RateLimit-Reset": "1585263137",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
"Accept-Encoding, Accept, X-Requested-With, X-GitHub-OpenAPI"
|
||||
],
|
||||
"ETag": "W/\"07a5cf65f90f90ff1092d072a4eeae55a8eb0e6442fbc7b222596f3d1fbc8983\"",
|
||||
"X-OAuth-Scopes": "repo, workflow",
|
||||
"ETag": "W/\"4a7241dfa969b562ba29b03b5ac9bc3a\"",
|
||||
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion",
|
||||
"X-Accepted-OAuth-Scopes": "",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4929",
|
||||
"X-RateLimit-Reset": "1617917629",
|
||||
"X-RateLimit-Used": "71",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"X-XSS-Protection": "1; mode=block",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E09C:148F:17ACBC:19F1AE:606F69E4"
|
||||
"X-GitHub-Request-Id": "E69B:9495:1D1F5:2458C:5E7D2414"
|
||||
}
|
||||
},
|
||||
"uuid": "d17664b2-c30b-4d25-b10e-a5d14ce27509",
|
||||
"uuid": "cfabb012-1a36-4232-8f6d-e7d3f35673e3",
|
||||
"persistent": true,
|
||||
"insertionIndex": 10
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"id": "8a8ad40e-67c5-4f3c-8335-8fc8f163f292",
|
||||
"id": "dce1e639-fea0-48b9-a21e-43f2dd9b77a1",
|
||||
"name": "repos_hub4j-test-org_test-labels_labels_test",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/test-labels/labels/test",
|
||||
@@ -12,35 +12,35 @@
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"body": "{\"id\":2897001281,\"node_id\":\"MDU6TGFiZWwyODk3MDAxMjgx\",\"url\":\"https://api.github.com/repos/hub4j-test-org/test-labels/labels/test\",\"name\":\"test\",\"color\":\"000000\",\"default\":false,\"description\":\"Deprecated\"}",
|
||||
"body": "{\"id\":1937402918,\"node_id\":\"MDU6TGFiZWwxOTM3NDAyOTE4\",\"url\":\"https://api.github.com/repos/hub4j-test-org/test-labels/labels/test\",\"name\":\"test\",\"color\":\"000000\",\"default\":false,\"description\":\"Deprecated\"}",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Thu, 08 Apr 2021 20:39:01 GMT",
|
||||
"Date": "Thu, 26 Mar 2020 21:52:21 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Server": "GitHub.com",
|
||||
"Status": "200 OK",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4984",
|
||||
"X-RateLimit-Reset": "1585263137",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
"Accept-Encoding, Accept, X-Requested-With, X-GitHub-OpenAPI"
|
||||
],
|
||||
"ETag": "W/\"07a5cf65f90f90ff1092d072a4eeae55a8eb0e6442fbc7b222596f3d1fbc8983\"",
|
||||
"Last-Modified": "Thu, 08 Apr 2021 20:39:01 GMT",
|
||||
"X-OAuth-Scopes": "repo, workflow",
|
||||
"ETag": "W/\"4a7241dfa969b562ba29b03b5ac9bc3a\"",
|
||||
"Last-Modified": "Thu, 26 Mar 2020 21:52:20 GMT",
|
||||
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4928",
|
||||
"X-RateLimit-Reset": "1617917629",
|
||||
"X-RateLimit-Used": "72",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"X-XSS-Protection": "1; mode=block",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E09C:148F:17ACD3:19F1CC:606F69E5"
|
||||
"X-GitHub-Request-Id": "E69B:9495:1D1FD:24595:5E7D2414"
|
||||
}
|
||||
},
|
||||
"uuid": "8a8ad40e-67c5-4f3c-8335-8fc8f163f292",
|
||||
"uuid": "dce1e639-fea0-48b9-a21e-43f2dd9b77a1",
|
||||
"persistent": true,
|
||||
"scenarioName": "scenario-1-repos-hub4j-test-org-test-labels-labels-test",
|
||||
"requiredScenarioState": "scenario-1-repos-hub4j-test-org-test-labels-labels-test-3",
|
||||
|
||||
@@ -1,13 +1,10 @@
|
||||
{
|
||||
"id": "f631b166-3456-4077-a8f6-02bd76f00556",
|
||||
"id": "73f6275a-8ea1-4697-9b93-608128f04e47",
|
||||
"name": "repos_hub4j-test-org_test-labels_labels_test",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/test-labels/labels/test",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
@@ -16,40 +13,40 @@
|
||||
{
|
||||
"equalToJson": "{\"color\":\"000000\",\"name\":\"test\",\"description\":\"this is also a test\"}",
|
||||
"ignoreArrayOrder": true,
|
||||
"ignoreExtraElements": false
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"body": "{\"id\":2897001281,\"node_id\":\"MDU6TGFiZWwyODk3MDAxMjgx\",\"url\":\"https://api.github.com/repos/hub4j-test-org/test-labels/labels/test\",\"name\":\"test\",\"color\":\"000000\",\"default\":false,\"description\":\"this is also a test\"}",
|
||||
"body": "{\"id\":1937402918,\"node_id\":\"MDU6TGFiZWwxOTM3NDAyOTE4\",\"url\":\"https://api.github.com/repos/hub4j-test-org/test-labels/labels/test\",\"name\":\"test\",\"color\":\"000000\",\"default\":false,\"description\":\"this is also a test\"}",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Thu, 08 Apr 2021 20:39:01 GMT",
|
||||
"Date": "Thu, 26 Mar 2020 21:52:21 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Server": "GitHub.com",
|
||||
"Status": "200 OK",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4983",
|
||||
"X-RateLimit-Reset": "1585263137",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
"Accept-Encoding, Accept, X-Requested-With, X-GitHub-OpenAPI"
|
||||
],
|
||||
"ETag": "W/\"bfca8b6c194e9d4c98b1f8c2eb47477761b73647444b0f1c3407337b3ce430c9\"",
|
||||
"X-OAuth-Scopes": "repo, workflow",
|
||||
"ETag": "W/\"d53816a82e924d1178daa76454ed6372\"",
|
||||
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion",
|
||||
"X-Accepted-OAuth-Scopes": "",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4927",
|
||||
"X-RateLimit-Reset": "1617917629",
|
||||
"X-RateLimit-Used": "73",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"X-XSS-Protection": "1; mode=block",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E09C:148F:17ACEE:19F1E2:606F69E5"
|
||||
"X-GitHub-Request-Id": "E69B:9495:1D202:2459E:5E7D2415"
|
||||
}
|
||||
},
|
||||
"uuid": "f631b166-3456-4077-a8f6-02bd76f00556",
|
||||
"uuid": "73f6275a-8ea1-4697-9b93-608128f04e47",
|
||||
"persistent": true,
|
||||
"insertionIndex": 12
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"id": "55586936-51ee-4234-81ef-139c1b88732d",
|
||||
"id": "2f35559b-a057-4ebd-926e-37b89964ce0e",
|
||||
"name": "repos_hub4j-test-org_test-labels_labels_test",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/test-labels/labels/test",
|
||||
@@ -13,26 +13,26 @@
|
||||
"response": {
|
||||
"status": 204,
|
||||
"headers": {
|
||||
"Date": "Thu, 26 Mar 2020 21:52:21 GMT",
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Thu, 08 Apr 2021 20:39:01 GMT",
|
||||
"X-OAuth-Scopes": "repo, workflow",
|
||||
"Status": "204 No Content",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4982",
|
||||
"X-RateLimit-Reset": "1585263137",
|
||||
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion",
|
||||
"X-Accepted-OAuth-Scopes": "",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4926",
|
||||
"X-RateLimit-Reset": "1617917629",
|
||||
"X-RateLimit-Used": "74",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"X-XSS-Protection": "1; mode=block",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"Vary": "Accept-Encoding, Accept, X-Requested-With",
|
||||
"X-GitHub-Request-Id": "E09C:148F:17AD02:19F1F8:606F69E5"
|
||||
"Vary": "Accept-Encoding, Accept, X-Requested-With, X-GitHub-OpenAPI",
|
||||
"X-GitHub-Request-Id": "E69B:9495:1D208:245A7:5E7D2415"
|
||||
}
|
||||
},
|
||||
"uuid": "55586936-51ee-4234-81ef-139c1b88732d",
|
||||
"uuid": "2f35559b-a057-4ebd-926e-37b89964ce0e",
|
||||
"persistent": true,
|
||||
"insertionIndex": 13
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"id": "6b993840-624c-4b20-96c3-d5036b7502a1",
|
||||
"id": "0c78363a-0c1e-4070-9210-a890b324c506",
|
||||
"name": "repos_hub4j-test-org_test-labels_labels_test",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/test-labels/labels/test",
|
||||
@@ -12,29 +12,29 @@
|
||||
},
|
||||
"response": {
|
||||
"status": 404,
|
||||
"body": "{\"message\":\"Not Found\",\"documentation_url\":\"https://docs.github.com/rest/reference/issues#get-a-label\"}",
|
||||
"body": "{\"message\":\"Not Found\",\"documentation_url\":\"https://developer.github.com/v3/issues/labels/#get-a-single-label\"}",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Thu, 08 Apr 2021 20:39:02 GMT",
|
||||
"Date": "Thu, 26 Mar 2020 21:52:22 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"X-OAuth-Scopes": "repo, workflow",
|
||||
"Server": "GitHub.com",
|
||||
"Status": "404 Not Found",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4981",
|
||||
"X-RateLimit-Reset": "1585263138",
|
||||
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4925",
|
||||
"X-RateLimit-Reset": "1617917629",
|
||||
"X-RateLimit-Used": "75",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"X-XSS-Protection": "1; mode=block",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"Vary": "Accept-Encoding, Accept, X-Requested-With",
|
||||
"X-GitHub-Request-Id": "E09C:148F:17AD12:19F20A:606F69E5"
|
||||
"Vary": "Accept-Encoding, Accept, X-Requested-With, X-GitHub-OpenAPI",
|
||||
"X-GitHub-Request-Id": "E69B:9495:1D211:245AD:5E7D2415"
|
||||
}
|
||||
},
|
||||
"uuid": "6b993840-624c-4b20-96c3-d5036b7502a1",
|
||||
"uuid": "0c78363a-0c1e-4070-9210-a890b324c506",
|
||||
"persistent": true,
|
||||
"scenarioName": "scenario-1-repos-hub4j-test-org-test-labels-labels-test",
|
||||
"requiredScenarioState": "scenario-1-repos-hub4j-test-org-test-labels-labels-test-4",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"id": "f5c0a21a-b320-41f6-8c11-0d7d7a6a935e",
|
||||
"id": "3e2f3c6f-2300-4da5-a68a-e8ffc23cbaa7",
|
||||
"name": "repos_hub4j-test-org_test-labels_labels_test",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/test-labels/labels/test",
|
||||
@@ -12,35 +12,35 @@
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"body": "{\"id\":2897001281,\"node_id\":\"MDU6TGFiZWwyODk3MDAxMjgx\",\"url\":\"https://api.github.com/repos/hub4j-test-org/test-labels/labels/test\",\"name\":\"test\",\"color\":\"123456\",\"default\":false,\"description\":\"\"}",
|
||||
"body": "{\"id\":1937402918,\"node_id\":\"MDU6TGFiZWwxOTM3NDAyOTE4\",\"url\":\"https://api.github.com/repos/hub4j-test-org/test-labels/labels/test\",\"name\":\"test\",\"color\":\"123456\",\"default\":false,\"description\":\"\"}",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Thu, 08 Apr 2021 20:39:00 GMT",
|
||||
"Date": "Thu, 26 Mar 2020 21:52:20 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Server": "GitHub.com",
|
||||
"Status": "200 OK",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4989",
|
||||
"X-RateLimit-Reset": "1585263137",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
"Accept-Encoding, Accept, X-Requested-With, X-GitHub-OpenAPI"
|
||||
],
|
||||
"ETag": "W/\"30be2cbd89d25d27271419964a66bc1dce33812d6e0e519ff5801bb0b09b4b62\"",
|
||||
"Last-Modified": "Thu, 08 Apr 2021 20:39:00 GMT",
|
||||
"X-OAuth-Scopes": "repo, workflow",
|
||||
"ETag": "W/\"48de34595ef7992c2e74e8ceb548cdfa\"",
|
||||
"Last-Modified": "Thu, 26 Mar 2020 21:52:19 GMT",
|
||||
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4933",
|
||||
"X-RateLimit-Reset": "1617917629",
|
||||
"X-RateLimit-Used": "67",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"X-XSS-Protection": "1; mode=block",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E09C:148F:17AC8C:19F176:606F69E4"
|
||||
"X-GitHub-Request-Id": "E69B:9495:1D1E0:24570:5E7D2413"
|
||||
}
|
||||
},
|
||||
"uuid": "f5c0a21a-b320-41f6-8c11-0d7d7a6a935e",
|
||||
"uuid": "3e2f3c6f-2300-4da5-a68a-e8ffc23cbaa7",
|
||||
"persistent": true,
|
||||
"scenarioName": "scenario-1-repos-hub4j-test-org-test-labels-labels-test",
|
||||
"requiredScenarioState": "Started",
|
||||
|
||||
@@ -1,13 +1,10 @@
|
||||
{
|
||||
"id": "117bb46b-6d0d-4901-b27e-324ef427f5c4",
|
||||
"id": "6d637a44-3eff-4110-bb1f-dd9002d0e051",
|
||||
"name": "repos_hub4j-test-org_test-labels_labels_test",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/test-labels/labels/test",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
@@ -16,40 +13,40 @@
|
||||
{
|
||||
"equalToJson": "{\"color\":\"000000\",\"name\":\"test\",\"description\":\"It is dark!\"}",
|
||||
"ignoreArrayOrder": true,
|
||||
"ignoreExtraElements": false
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"body": "{\"id\":2897001281,\"node_id\":\"MDU6TGFiZWwyODk3MDAxMjgx\",\"url\":\"https://api.github.com/repos/hub4j-test-org/test-labels/labels/test\",\"name\":\"test\",\"color\":\"000000\",\"default\":false,\"description\":\"It is dark!\"}",
|
||||
"body": "{\"id\":1937402918,\"node_id\":\"MDU6TGFiZWwxOTM3NDAyOTE4\",\"url\":\"https://api.github.com/repos/hub4j-test-org/test-labels/labels/test\",\"name\":\"test\",\"color\":\"000000\",\"default\":false,\"description\":\"It is dark!\"}",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Thu, 08 Apr 2021 20:39:00 GMT",
|
||||
"Date": "Thu, 26 Mar 2020 21:52:20 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Server": "GitHub.com",
|
||||
"Status": "200 OK",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4988",
|
||||
"X-RateLimit-Reset": "1585263137",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
"Accept-Encoding, Accept, X-Requested-With, X-GitHub-OpenAPI"
|
||||
],
|
||||
"ETag": "W/\"ba89b8a15e377c2e7eb219dc3c48b277edd958e762f8814667ad312cc33de62c\"",
|
||||
"X-OAuth-Scopes": "repo, workflow",
|
||||
"ETag": "W/\"14706c3016a6b3a0cfce85c5b6389c4e\"",
|
||||
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion",
|
||||
"X-Accepted-OAuth-Scopes": "",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4932",
|
||||
"X-RateLimit-Reset": "1617917629",
|
||||
"X-RateLimit-Used": "68",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"X-XSS-Protection": "1; mode=block",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E09C:148F:17AC95:19F17B:606F69E4"
|
||||
"X-GitHub-Request-Id": "E69B:9495:1D1E3:24577:5E7D2414"
|
||||
}
|
||||
},
|
||||
"uuid": "117bb46b-6d0d-4901-b27e-324ef427f5c4",
|
||||
"uuid": "6d637a44-3eff-4110-bb1f-dd9002d0e051",
|
||||
"persistent": true,
|
||||
"insertionIndex": 7
|
||||
}
|
||||
@@ -1,13 +1,10 @@
|
||||
{
|
||||
"id": "f558f48f-7af7-4263-9770-89e4b515af5a",
|
||||
"id": "6e6dba1e-604f-400c-8edc-9282547d33b2",
|
||||
"name": "repos_hub4j-test-org_test-labels_labels_test",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/test-labels/labels/test",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
@@ -16,40 +13,40 @@
|
||||
{
|
||||
"equalToJson": "{\"color\":\"123456\",\"name\":\"test\",\"description\":\"Deprecated\"}",
|
||||
"ignoreArrayOrder": true,
|
||||
"ignoreExtraElements": false
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
]
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"body": "{\"id\":2897001281,\"node_id\":\"MDU6TGFiZWwyODk3MDAxMjgx\",\"url\":\"https://api.github.com/repos/hub4j-test-org/test-labels/labels/test\",\"name\":\"test\",\"color\":\"123456\",\"default\":false,\"description\":\"Deprecated\"}",
|
||||
"body": "{\"id\":1937402918,\"node_id\":\"MDU6TGFiZWwxOTM3NDAyOTE4\",\"url\":\"https://api.github.com/repos/hub4j-test-org/test-labels/labels/test\",\"name\":\"test\",\"color\":\"123456\",\"default\":false,\"description\":\"Deprecated\"}",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Thu, 08 Apr 2021 20:39:00 GMT",
|
||||
"Date": "Thu, 26 Mar 2020 21:52:20 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Server": "GitHub.com",
|
||||
"Status": "200 OK",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4987",
|
||||
"X-RateLimit-Reset": "1585263137",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
"Accept-Encoding, Accept, X-Requested-With, X-GitHub-OpenAPI"
|
||||
],
|
||||
"ETag": "W/\"5dda62923a7111d26151ff437289ea9473c852c89983b93781d079758bcf496a\"",
|
||||
"X-OAuth-Scopes": "repo, workflow",
|
||||
"ETag": "W/\"362625bccae2af3dc55feed7298cb6eb\"",
|
||||
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion",
|
||||
"X-Accepted-OAuth-Scopes": "",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4931",
|
||||
"X-RateLimit-Reset": "1617917629",
|
||||
"X-RateLimit-Used": "69",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"X-XSS-Protection": "1; mode=block",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E09C:148F:17AC9F:19F18D:606F69E4"
|
||||
"X-GitHub-Request-Id": "E69B:9495:1D1E9:2457F:5E7D2414"
|
||||
}
|
||||
},
|
||||
"uuid": "f558f48f-7af7-4263-9770-89e4b515af5a",
|
||||
"uuid": "6e6dba1e-604f-400c-8edc-9282547d33b2",
|
||||
"persistent": true,
|
||||
"insertionIndex": 8
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"id": "2e547f9d-8630-49dc-bb8c-95991320aacf",
|
||||
"id": "79ce6715-a164-4bb4-974c-7f20616f47d7",
|
||||
"name": "repos_hub4j-test-org_test-labels_labels_test",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/test-labels/labels/test",
|
||||
@@ -12,35 +12,35 @@
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"body": "{\"id\":2897001281,\"node_id\":\"MDU6TGFiZWwyODk3MDAxMjgx\",\"url\":\"https://api.github.com/repos/hub4j-test-org/test-labels/labels/test\",\"name\":\"test\",\"color\":\"123456\",\"default\":false,\"description\":\"Deprecated\"}",
|
||||
"body": "{\"id\":1937402918,\"node_id\":\"MDU6TGFiZWwxOTM3NDAyOTE4\",\"url\":\"https://api.github.com/repos/hub4j-test-org/test-labels/labels/test\",\"name\":\"test\",\"color\":\"123456\",\"default\":false,\"description\":\"Deprecated\"}",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Thu, 08 Apr 2021 20:39:00 GMT",
|
||||
"Date": "Thu, 26 Mar 2020 21:52:20 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Server": "GitHub.com",
|
||||
"Status": "200 OK",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4986",
|
||||
"X-RateLimit-Reset": "1585263137",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
"Accept-Encoding, Accept, X-Requested-With, X-GitHub-OpenAPI"
|
||||
],
|
||||
"ETag": "W/\"5dda62923a7111d26151ff437289ea9473c852c89983b93781d079758bcf496a\"",
|
||||
"Last-Modified": "Thu, 08 Apr 2021 20:39:00 GMT",
|
||||
"X-OAuth-Scopes": "repo, workflow",
|
||||
"ETag": "W/\"362625bccae2af3dc55feed7298cb6eb\"",
|
||||
"Last-Modified": "Thu, 26 Mar 2020 21:52:20 GMT",
|
||||
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4930",
|
||||
"X-RateLimit-Reset": "1617917629",
|
||||
"X-RateLimit-Used": "70",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"X-XSS-Protection": "1; mode=block",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E09C:148F:17ACB3:19F1A1:606F69E4"
|
||||
"X-GitHub-Request-Id": "E69B:9495:1D1F1:24586:5E7D2414"
|
||||
}
|
||||
},
|
||||
"uuid": "2e547f9d-8630-49dc-bb8c-95991320aacf",
|
||||
"uuid": "79ce6715-a164-4bb4-974c-7f20616f47d7",
|
||||
"persistent": true,
|
||||
"scenarioName": "scenario-1-repos-hub4j-test-org-test-labels-labels-test",
|
||||
"requiredScenarioState": "scenario-1-repos-hub4j-test-org-test-labels-labels-test-2",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"id": "f6ff2ef4-3475-44b3-8343-8747b248621c",
|
||||
"id": "e64a0737-c9a7-4ca4-82ce-20e1d0937bbf",
|
||||
"name": "repos_hub4j-test-org_test-labels_labels_test2",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/test-labels/labels/test2",
|
||||
@@ -12,35 +12,35 @@
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"body": "{\"id\":2897001309,\"node_id\":\"MDU6TGFiZWwyODk3MDAxMzA5\",\"url\":\"https://api.github.com/repos/hub4j-test-org/test-labels/labels/test2\",\"name\":\"test2\",\"color\":\"123457\",\"default\":false,\"description\":\"this is a different test\"}",
|
||||
"body": "{\"id\":1937402965,\"node_id\":\"MDU6TGFiZWwxOTM3NDAyOTY1\",\"url\":\"https://api.github.com/repos/hub4j-test-org/test-labels/labels/test2\",\"name\":\"test2\",\"color\":\"123457\",\"default\":false,\"description\":\"this is a different test\"}",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Thu, 08 Apr 2021 20:39:02 GMT",
|
||||
"Date": "Thu, 26 Mar 2020 21:52:22 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Server": "GitHub.com",
|
||||
"Status": "200 OK",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4979",
|
||||
"X-RateLimit-Reset": "1585263137",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
"Accept-Encoding, Accept, X-Requested-With, X-GitHub-OpenAPI"
|
||||
],
|
||||
"ETag": "W/\"6bb2796b20a76d6ab8e7a147bf6b19cf6d0605587e59367c34afe06bb4786f60\"",
|
||||
"Last-Modified": "Thu, 08 Apr 2021 20:39:02 GMT",
|
||||
"X-OAuth-Scopes": "repo, workflow",
|
||||
"ETag": "W/\"648a902d66c2f46f74c7b836969fdfe9\"",
|
||||
"Last-Modified": "Thu, 26 Mar 2020 21:52:22 GMT",
|
||||
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4923",
|
||||
"X-RateLimit-Reset": "1617917629",
|
||||
"X-RateLimit-Used": "77",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"X-XSS-Protection": "1; mode=block",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E09C:148F:17AD40:19F239:606F69E6"
|
||||
"X-GitHub-Request-Id": "E69B:9495:1D219:245BC:5E7D2416"
|
||||
}
|
||||
},
|
||||
"uuid": "f6ff2ef4-3475-44b3-8343-8747b248621c",
|
||||
"uuid": "e64a0737-c9a7-4ca4-82ce-20e1d0937bbf",
|
||||
"persistent": true,
|
||||
"insertionIndex": 16
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"id": "63ae900f-dd82-428d-abb0-6047083b3a5c",
|
||||
"id": "932ad601-65b1-4472-9b6a-13ead9cbc248",
|
||||
"name": "repos_hub4j-test-org_test-labels_labels_test2",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/test-labels/labels/test2",
|
||||
@@ -13,26 +13,26 @@
|
||||
"response": {
|
||||
"status": 204,
|
||||
"headers": {
|
||||
"Date": "Thu, 26 Mar 2020 21:52:22 GMT",
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Thu, 08 Apr 2021 20:39:02 GMT",
|
||||
"X-OAuth-Scopes": "repo, workflow",
|
||||
"Status": "204 No Content",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4978",
|
||||
"X-RateLimit-Reset": "1585263137",
|
||||
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion",
|
||||
"X-Accepted-OAuth-Scopes": "",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4922",
|
||||
"X-RateLimit-Reset": "1617917629",
|
||||
"X-RateLimit-Used": "78",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"X-XSS-Protection": "1; mode=block",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"Vary": "Accept-Encoding, Accept, X-Requested-With",
|
||||
"X-GitHub-Request-Id": "E09C:148F:17AD4D:19F246:606F69E6"
|
||||
"Vary": "Accept-Encoding, Accept, X-Requested-With, X-GitHub-OpenAPI",
|
||||
"X-GitHub-Request-Id": "E69B:9495:1D21C:245BF:5E7D2416"
|
||||
}
|
||||
},
|
||||
"uuid": "63ae900f-dd82-428d-abb0-6047083b3a5c",
|
||||
"uuid": "932ad601-65b1-4472-9b6a-13ead9cbc248",
|
||||
"persistent": true,
|
||||
"insertionIndex": 17
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"id": "d82ec73a-75a1-4f50-aace-f39edd6b432b",
|
||||
"id": "0a9dfe83-1110-41c7-9542-4c9d299f430f",
|
||||
"name": "user",
|
||||
"request": {
|
||||
"url": "/user",
|
||||
@@ -14,33 +14,33 @@
|
||||
"status": 200,
|
||||
"bodyFileName": "user-1.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Thu, 08 Apr 2021 20:38:58 GMT",
|
||||
"Date": "Thu, 26 Mar 2020 21:52:17 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Server": "GitHub.com",
|
||||
"Status": "200 OK",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4999",
|
||||
"X-RateLimit-Reset": "1585263137",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
"Accept-Encoding, Accept, X-Requested-With, X-GitHub-OpenAPI"
|
||||
],
|
||||
"ETag": "W/\"0787acf16cf61d6918eeb628d3c11826278c378a9c61ae7a64005efde6229b52\"",
|
||||
"Last-Modified": "Fri, 02 Apr 2021 21:55:29 GMT",
|
||||
"X-OAuth-Scopes": "repo, workflow",
|
||||
"ETag": "W/\"ef9ba8a02c78b6a718bca0bca9f1bb5d\"",
|
||||
"Last-Modified": "Thu, 26 Mar 2020 21:08:45 GMT",
|
||||
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, write:discussion",
|
||||
"X-Accepted-OAuth-Scopes": "",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4943",
|
||||
"X-RateLimit-Reset": "1617917629",
|
||||
"X-RateLimit-Used": "57",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"X-XSS-Protection": "1; mode=block",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E09C:148F:17AC5A:19F136:606F69E2"
|
||||
"X-GitHub-Request-Id": "E69B:9495:1D1A7:24524:5E7D2411"
|
||||
}
|
||||
},
|
||||
"uuid": "d82ec73a-75a1-4f50-aace-f39edd6b432b",
|
||||
"uuid": "0a9dfe83-1110-41c7-9542-4c9d299f430f",
|
||||
"persistent": true,
|
||||
"insertionIndex": 1
|
||||
}
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_test-checks_check-runs_1424883599",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/test-checks/check-runs/1424883599",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "application/vnd.github.antiope-preview+json"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_test-checks_check-runs_1424883599",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/test-checks/check-runs/1424883599",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "application/vnd.github.antiope-preview+json"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_test-checks_check-runs_1424883037",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/test-checks/check-runs/1424883037",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "application/vnd.github.antiope-preview+json"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "organizations_7544739_team_3451996_discussions_64",
|
||||
"request": {
|
||||
"url": "/organizations/7544739/team/3451996/discussions/64",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "organizations_7544739_team_3451996_discussions_64",
|
||||
"request": {
|
||||
"url": "/organizations/7544739/team/3451996/discussions/64",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "organizations_7544739_team_3451996_discussions_64",
|
||||
"request": {
|
||||
"url": "/organizations/7544739/team/3451996/discussions/64",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "gists_11a257b91982aafd6370089ef877a682",
|
||||
"request": {
|
||||
"url": "/gists/11a257b91982aafd6370089ef877a682",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "gists_11a257b91982aafd6370089ef877a682",
|
||||
"request": {
|
||||
"url": "/gists/11a257b91982aafd6370089ef877a682",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "gists_11a257b91982aafd6370089ef877a682",
|
||||
"request": {
|
||||
"url": "/gists/11a257b91982aafd6370089ef877a682",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "gists_209fef72c25fe4b3f673437603ab6d5d",
|
||||
"request": {
|
||||
"url": "/gists/209fef72c25fe4b3f673437603ab6d5d",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"description\":\"Description updated by API\",\"files\":{\"new-file.txt\":{\"content\":\"Added by updater\"},\"rename-me.py\":{\"filename\":\"renamed.py\"},\"update-me.txt\":{\"content\":\"Content updated by API\"}}}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_github-api_issues_313",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/issues/313",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"labels\":[\"test-label\"]}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_github-api_issues_313",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/issues/313",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"state\":\"closed\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_github-api_issues_368",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/issues/368",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_github-api_issues_368",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/issues/368",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_github-api_issues_370",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/issues/370",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_github-api_issues_370",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/issues/370",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_github-api_milestones_2",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/milestones/2",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"title\":\"Updated Title\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_github-api_milestones_2",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/milestones/2",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"description\":\"Updated Description\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_github-api_milestones_2",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/milestones/2",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"due_on\":\"2020-10-05T13:00:00Z\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "projects_columns_cards_27353270",
|
||||
"request": {
|
||||
"url": "/projects/columns/cards/27353270",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"archived\":true}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "application/vnd.github.inertia-preview+json"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "projects_columns_cards_27353267",
|
||||
"request": {
|
||||
"url": "/projects/columns/cards/27353267",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"note\":\"New note\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "application/vnd.github.inertia-preview+json"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "projects_columns_6706791",
|
||||
"request": {
|
||||
"url": "/projects/columns/6706791",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"name\":\"new-name\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "application/vnd.github.inertia-preview+json"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "projects_3312435",
|
||||
"request": {
|
||||
"url": "/projects/3312435",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"body\":\"New body\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "application/vnd.github.inertia-preview+json"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "projects_3312436",
|
||||
"request": {
|
||||
"url": "/projects/3312436",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"name\":\"new-name\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "application/vnd.github.inertia-preview+json"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "projects_3312433",
|
||||
"request": {
|
||||
"url": "/projects/3312433",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"state\":\"closed\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "application/vnd.github.inertia-preview+json"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_github-api_pulls_272",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/pulls/272",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"state\":\"closed\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_github-api_pulls_273",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/pulls/273",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"state\":\"closed\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "application/vnd.github.shadow-cat-preview+json"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_github-api_pulls_270",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/pulls/270",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"state\":\"closed\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "application/vnd.github.shadow-cat-preview+json"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_github-api_pulls_263",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/pulls/263",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"state\":\"closed\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "application/vnd.github.shadow-cat-preview+json"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_github-api_pulls_395",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/pulls/395",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_github-api_pulls_comments_562972753",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/pulls/comments/562972753",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_github-api_pulls_258",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/pulls/258",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"state\":\"closed\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "application/vnd.github.shadow-cat-preview+json"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_github-api_pulls_259",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/pulls/259",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"state\":\"closed\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "application/vnd.github.shadow-cat-preview+json"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_github-api_pulls_260",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/pulls/260",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"state\":\"closed\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "application/vnd.github.shadow-cat-preview+json"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_github-api_pulls_268",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/pulls/268",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"state\":\"closed\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "application/vnd.github.shadow-cat-preview+json"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_github-api_pulls_269",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/pulls/269",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"state\":\"closed\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "application/vnd.github.shadow-cat-preview+json"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_github-api_issues_425",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/issues/425",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_github-api_issues_271",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/issues/271",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"assignees\":[\"bitwiseman\"]}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_github-api_pulls_271",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/pulls/271",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"state\":\"closed\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "application/vnd.github.shadow-cat-preview+json"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_github-api_pulls_382",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/pulls/382",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_github-api_pulls_381",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/pulls/381",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_github-api_pulls_381",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/pulls/381",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_github-api_issues_264",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/issues/264",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"labels\":[\"setLabels_label_name\"]}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_github-api_pulls_264",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/pulls/264",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"state\":\"closed\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "application/vnd.github.shadow-cat-preview+json"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_updateoutdatedbranches_git_refs_heads_outdated",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/updateOutdatedBranches/git/refs/heads/outdated",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_updateoutdatedbranches_pulls_8",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/updateOutdatedBranches/pulls/8",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_updateoutdatedbranches_git_refs_heads_outdated",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/updateOutdatedBranches/git/refs/heads/outdated",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_updateoutdatedbranches_git_refs_heads_outdated",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/updateOutdatedBranches/git/refs/heads/outdated",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_updateoutdatedbranches_pulls_9",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/updateOutdatedBranches/pulls/9",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_github-api",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"archived\":true,\"name\":\"github-api\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": false
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_github-api",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_github-api",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_temp-setmergeoptions",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/temp-setMergeOptions",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"allow_squash_merge\":true,\"name\":\"temp-setMergeOptions\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_temp-setmergeoptions",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/temp-setMergeOptions",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"allow_merge_commit\":false,\"name\":\"temp-setMergeOptions\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_temp-setmergeoptions",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/temp-setMergeOptions",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"name\":\"temp-setMergeOptions\",\"allow_rebase_merge\":false}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_temp-setmergeoptions",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/temp-setMergeOptions",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"allow_merge_commit\":true,\"name\":\"temp-setMergeOptions\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_temp-setmergeoptions",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/temp-setMergeOptions",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"name\":\"temp-setMergeOptions\",\"allow_rebase_merge\":true}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_hub4j-test-org_temp-setmergeoptions",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/temp-setMergeOptions",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"allow_squash_merge\":false,\"name\":\"temp-setMergeOptions\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_test-repo-visibility",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/test-repo-visibility",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "application/vnd.github.nebula-preview+json"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_test-repo-visibility",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/test-repo-visibility",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "application/vnd.github.nebula-preview+json"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_test-repo-visibility",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/test-repo-visibility",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "application/vnd.github.nebula-preview+json"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_bitwiseman_test-repo-public",
|
||||
"request": {
|
||||
"url": "/repos/bitwiseman/test-repo-public",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"private\":true,\"name\":\"test-repo-public\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"name": "repos_bitwiseman_test-repo-public",
|
||||
"request": {
|
||||
"url": "/repos/bitwiseman/test-repo-public",
|
||||
"method": "PATCH",
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"private\":false,\"name\":\"test-repo-public\"}",
|
||||
@@ -10,11 +11,7 @@
|
||||
"ignoreExtraElements": true
|
||||
}
|
||||
],
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_temp-testupdaterepository",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/temp-testUpdateRepository",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_temp-testupdaterepository",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/temp-testUpdateRepository",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "repos_hub4j-test-org_temp-testupdaterepository",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/temp-testUpdateRepository",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "teams_3451996",
|
||||
"request": {
|
||||
"url": "/teams/3451996",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "teams_3451996",
|
||||
"request": {
|
||||
"url": "/teams/3451996",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "teams_3451996",
|
||||
"request": {
|
||||
"url": "/teams/3451996",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
@@ -3,11 +3,8 @@
|
||||
"name": "teams_3451996",
|
||||
"request": {
|
||||
"url": "/teams/3451996",
|
||||
"method": "POST",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"X-HTTP-Method-Override": {
|
||||
"equalTo": "PATCH"
|
||||
},
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user