Add removeLabel() that throws when label missing

This commit is contained in:
Liam Newman
2021-03-12 17:56:34 -08:00
parent 1fefc77582
commit a59ee6a82d
40 changed files with 769 additions and 543 deletions

View File

@@ -312,7 +312,7 @@ public class GHIssue extends GHObject implements Reactable {
}
/**
* Sets labels.
* Sets labels on the target to a specific list.
*
* @param labels
* the labels
@@ -326,6 +326,8 @@ public class GHIssue extends GHObject implements Reactable {
/**
* Adds labels to the issue.
*
* Labels that are already present on the target are ignored.
*
* @param names
* Names of the label
* @throws IOException
@@ -338,6 +340,8 @@ public class GHIssue extends GHObject implements Reactable {
/**
* Add labels.
*
* Labels that are already present on the target are ignored.
*
* @param labels
* the labels
* @throws IOException
@@ -350,6 +354,8 @@ public class GHIssue extends GHObject implements Reactable {
/**
* Add labels.
*
* Labels that are already present on the target are ignored.
*
* @param labels
* the labels
* @throws IOException
@@ -364,7 +370,23 @@ public class GHIssue extends GHObject implements Reactable {
}
/**
* Remove a given label by name from this issue.
* Remove a single label.
*
* Attempting to remove a label that is not present throws {@link GHFileNotFoundException}.
*
* @param name
* the name
* @throws IOException
* the io exception, throws {@link GHFileNotFoundException} if label was not present.
*/
public void removeLabel(String name) throws IOException {
root.createRequest().method("DELETE").withUrlPath(getIssuesApiRoute() + "/labels", name).send();
}
/**
* Remove a collection of labels.
*
* Attempting to remove labels that are not present on the target are ignored.
*
* @param names
* the names
@@ -376,7 +398,9 @@ public class GHIssue extends GHObject implements Reactable {
}
/**
* Remove labels.
* Remove a collection of labels.
*
* Attempting to remove labels that are not present on the target are ignored.
*
* @param labels
* the labels
@@ -389,7 +413,9 @@ public class GHIssue extends GHObject implements Reactable {
}
/**
* Remove labels.
* Remove a collection of labels.
*
* Attempting to remove labels that are not present on the target are ignored.
*
* @param labels
* the labels
@@ -402,7 +428,11 @@ public class GHIssue extends GHObject implements Reactable {
private void _removeLabels(Collection<String> names) throws IOException {
for (String name : names) {
root.createRequest().method("DELETE").withUrlPath(getIssuesApiRoute() + "/labels", name).send();
try {
removeLabel(name);
} catch (GHFileNotFoundException e) {
// when trying to remove multiple labels, we ignore already removed
}
}
}

View File

@@ -430,7 +430,11 @@ public class GHPullRequestTest extends AbstractGitHubWireMockTest {
String addedLabel3 = "addLabels_label_name_3";
p.addLabels(addedLabel1);
int requestCount = mockGitHub.getRequestCount();
p.addLabels(addedLabel2, addedLabel3);
// multiple labels can be added with one api call
assertThat(mockGitHub.getRequestCount(), equalTo(requestCount + 1));
Collection<GHLabel> labels = getRepository().getPullRequest(p.getNumber()).getLabels();
assertEquals(3, labels.size());
@@ -438,6 +442,9 @@ public class GHPullRequestTest extends AbstractGitHubWireMockTest {
containsInAnyOrder(hasProperty("name", equalTo(addedLabel1)),
hasProperty("name", equalTo(addedLabel2)),
hasProperty("name", equalTo(addedLabel3))));
// Adding a label which is already present does not throw an error
p.addLabels(addedLabel1);
}
@Test
@@ -474,11 +481,26 @@ public class GHPullRequestTest extends AbstractGitHubWireMockTest {
Collection<GHLabel> labels = getRepository().getPullRequest(p.getNumber()).getLabels();
assertEquals(3, labels.size());
int requestCount = mockGitHub.getRequestCount();
p.removeLabels(label2, label3);
// each label deleted is a separate api call
assertThat(mockGitHub.getRequestCount(), equalTo(requestCount + 2));
labels = getRepository().getPullRequest(p.getNumber()).getLabels();
assertEquals(1, labels.size());
assertEquals(label1, labels.iterator().next().getName());
// Removing some labels that are not present does not throw
// This is consistent with earlier behavior and with addLabels()
p.removeLabels(label3);
// Calling removeLabel() on label that is not present will throw
try {
p.removeLabel(label3);
fail("Expected GHFileNotFoundException");
} catch (GHFileNotFoundException e) {
assertThat(e.getMessage(), containsString("Label does not exist"));
}
}
@Test

View File

@@ -66,7 +66,7 @@
"deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments",
"created_at": "2019-09-06T23:26:04Z",
"updated_at": "2021-01-22T03:50:37Z",
"pushed_at": "2021-03-10T12:52:04Z",
"pushed_at": "2021-03-13T01:53:25Z",
"git_url": "git://github.com/hub4j-test-org/github-api.git",
"ssh_url": "git@github.com:hub4j-test-org/github-api.git",
"clone_url": "https://github.com/hub4j-test-org/github-api.git",
@@ -195,7 +195,7 @@
"deployments_url": "https://api.github.com/repos/hub4j/github-api/deployments",
"created_at": "2010-04-19T04:13:03Z",
"updated_at": "2021-03-10T10:27:30Z",
"pushed_at": "2021-03-10T02:45:39Z",
"pushed_at": "2021-03-10T13:03:30Z",
"git_url": "git://github.com/hub4j/github-api.git",
"ssh_url": "git@github.com:hub4j/github-api.git",
"clone_url": "https://github.com/hub4j/github-api.git",
@@ -210,7 +210,7 @@
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"forks_count": 529,
"forks_count": 530,
"mirror_url": null,
"archived": false,
"disabled": false,
@@ -222,7 +222,7 @@
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 529,
"forks": 530,
"open_issues": 77,
"watchers": 740,
"default_branch": "master"
@@ -295,7 +295,7 @@
"deployments_url": "https://api.github.com/repos/hub4j/github-api/deployments",
"created_at": "2010-04-19T04:13:03Z",
"updated_at": "2021-03-10T10:27:30Z",
"pushed_at": "2021-03-10T02:45:39Z",
"pushed_at": "2021-03-10T13:03:30Z",
"git_url": "git://github.com/hub4j/github-api.git",
"ssh_url": "git@github.com:hub4j/github-api.git",
"clone_url": "https://github.com/hub4j/github-api.git",
@@ -310,7 +310,7 @@
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"forks_count": 529,
"forks_count": 530,
"mirror_url": null,
"archived": false,
"disabled": false,
@@ -322,11 +322,11 @@
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 529,
"forks": 530,
"open_issues": 77,
"watchers": 740,
"default_branch": "master"
},
"network_count": 529,
"network_count": 530,
"subscribers_count": 0
}

View File

@@ -66,7 +66,7 @@
"deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments",
"created_at": "2019-09-06T23:26:04Z",
"updated_at": "2021-01-22T03:50:37Z",
"pushed_at": "2021-03-10T12:52:16Z",
"pushed_at": "2021-03-13T01:53:58Z",
"git_url": "git://github.com/hub4j-test-org/github-api.git",
"ssh_url": "git@github.com:hub4j-test-org/github-api.git",
"clone_url": "https://github.com/hub4j-test-org/github-api.git",
@@ -195,7 +195,7 @@
"deployments_url": "https://api.github.com/repos/hub4j/github-api/deployments",
"created_at": "2010-04-19T04:13:03Z",
"updated_at": "2021-03-10T10:27:30Z",
"pushed_at": "2021-03-10T02:45:39Z",
"pushed_at": "2021-03-10T13:03:30Z",
"git_url": "git://github.com/hub4j/github-api.git",
"ssh_url": "git@github.com:hub4j/github-api.git",
"clone_url": "https://github.com/hub4j/github-api.git",
@@ -210,7 +210,7 @@
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"forks_count": 529,
"forks_count": 530,
"mirror_url": null,
"archived": false,
"disabled": false,
@@ -222,7 +222,7 @@
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 529,
"forks": 530,
"open_issues": 77,
"watchers": 740,
"default_branch": "master"
@@ -295,7 +295,7 @@
"deployments_url": "https://api.github.com/repos/hub4j/github-api/deployments",
"created_at": "2010-04-19T04:13:03Z",
"updated_at": "2021-03-10T10:27:30Z",
"pushed_at": "2021-03-10T02:45:39Z",
"pushed_at": "2021-03-10T13:03:30Z",
"git_url": "git://github.com/hub4j/github-api.git",
"ssh_url": "git@github.com:hub4j/github-api.git",
"clone_url": "https://github.com/hub4j/github-api.git",
@@ -310,7 +310,7 @@
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"forks_count": 529,
"forks_count": 530,
"mirror_url": null,
"archived": false,
"disabled": false,
@@ -322,11 +322,11 @@
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 529,
"forks": 530,
"open_issues": 77,
"watchers": 740,
"default_branch": "master"
},
"network_count": 529,
"network_count": 530,
"subscribers_count": 0
}

View File

@@ -0,0 +1,29 @@
[
{
"id": 2806272360,
"node_id": "MDU6TGFiZWwyODA2MjcyMzYw",
"url": "https://api.github.com/repos/hub4j-test-org/github-api/labels/addLabels_label_name_1",
"name": "addLabels_label_name_1",
"color": "ededed",
"default": false,
"description": null
},
{
"id": 2806272397,
"node_id": "MDU6TGFiZWwyODA2MjcyMzk3",
"url": "https://api.github.com/repos/hub4j-test-org/github-api/labels/addLabels_label_name_2",
"name": "addLabels_label_name_2",
"color": "ededed",
"default": false,
"description": null
},
{
"id": 2809132787,
"node_id": "MDU6TGFiZWwyODA5MTMyNzg3",
"url": "https://api.github.com/repos/hub4j-test-org/github-api/labels/addLabels_label_name_3",
"name": "addLabels_label_name_3",
"color": "ededed",
"default": false,
"description": null
}
]

View File

@@ -1,38 +1,38 @@
{
"url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/416",
"id": 589575707,
"node_id": "MDExOlB1bGxSZXF1ZXN0NTg5NTc1NzA3",
"html_url": "https://github.com/hub4j-test-org/github-api/pull/416",
"diff_url": "https://github.com/hub4j-test-org/github-api/pull/416.diff",
"patch_url": "https://github.com/hub4j-test-org/github-api/pull/416.patch",
"issue_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/416",
"number": 416,
"url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/427",
"id": 592265167,
"node_id": "MDExOlB1bGxSZXF1ZXN0NTkyMjY1MTY3",
"html_url": "https://github.com/hub4j-test-org/github-api/pull/427",
"diff_url": "https://github.com/hub4j-test-org/github-api/pull/427.diff",
"patch_url": "https://github.com/hub4j-test-org/github-api/pull/427.patch",
"issue_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/427",
"number": 427,
"state": "open",
"locked": false,
"title": "addLabels",
"user": {
"login": "gsmet",
"id": 1279749,
"node_id": "MDQ6VXNlcjEyNzk3NDk=",
"avatar_url": "https://avatars.githubusercontent.com/u/1279749?v=4",
"login": "bitwiseman",
"id": 1958953,
"node_id": "MDQ6VXNlcjE5NTg5NTM=",
"avatar_url": "https://avatars.githubusercontent.com/u/1958953?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/gsmet",
"html_url": "https://github.com/gsmet",
"followers_url": "https://api.github.com/users/gsmet/followers",
"following_url": "https://api.github.com/users/gsmet/following{/other_user}",
"gists_url": "https://api.github.com/users/gsmet/gists{/gist_id}",
"starred_url": "https://api.github.com/users/gsmet/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gsmet/subscriptions",
"organizations_url": "https://api.github.com/users/gsmet/orgs",
"repos_url": "https://api.github.com/users/gsmet/repos",
"events_url": "https://api.github.com/users/gsmet/events{/privacy}",
"received_events_url": "https://api.github.com/users/gsmet/received_events",
"url": "https://api.github.com/users/bitwiseman",
"html_url": "https://github.com/bitwiseman",
"followers_url": "https://api.github.com/users/bitwiseman/followers",
"following_url": "https://api.github.com/users/bitwiseman/following{/other_user}",
"gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions",
"organizations_url": "https://api.github.com/users/bitwiseman/orgs",
"repos_url": "https://api.github.com/users/bitwiseman/repos",
"events_url": "https://api.github.com/users/bitwiseman/events{/privacy}",
"received_events_url": "https://api.github.com/users/bitwiseman/received_events",
"type": "User",
"site_admin": false
},
"body": "## test",
"created_at": "2021-03-10T12:52:16Z",
"updated_at": "2021-03-10T12:52:16Z",
"created_at": "2021-03-13T01:53:58Z",
"updated_at": "2021-03-13T01:53:58Z",
"closed_at": null,
"merged_at": null,
"merge_commit_sha": null,
@@ -43,15 +43,15 @@
"labels": [],
"milestone": null,
"draft": false,
"commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/416/commits",
"review_comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/416/comments",
"commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/427/commits",
"review_comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/427/comments",
"review_comment_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments{/number}",
"comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/416/comments",
"statuses_url": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8",
"comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/427/comments",
"statuses_url": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/07374fe73aff1c2024a8d4114b32406c7a8e89b7",
"head": {
"label": "hub4j-test-org:test/stable",
"ref": "test/stable",
"sha": "1f40fdf4acf1adb246c109c21a22f617e4bd1ca8",
"sha": "07374fe73aff1c2024a8d4114b32406c7a8e89b7",
"user": {
"login": "hub4j-test-org",
"id": 7544739,
@@ -140,7 +140,7 @@
"deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments",
"created_at": "2019-09-06T23:26:04Z",
"updated_at": "2021-01-22T03:50:37Z",
"pushed_at": "2021-03-10T12:52:04Z",
"pushed_at": "2021-03-13T01:53:25Z",
"git_url": "git://github.com/hub4j-test-org/github-api.git",
"ssh_url": "git@github.com:hub4j-test-org/github-api.git",
"clone_url": "https://github.com/hub4j-test-org/github-api.git",
@@ -265,7 +265,7 @@
"deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments",
"created_at": "2019-09-06T23:26:04Z",
"updated_at": "2021-01-22T03:50:37Z",
"pushed_at": "2021-03-10T12:52:04Z",
"pushed_at": "2021-03-13T01:53:25Z",
"git_url": "git://github.com/hub4j-test-org/github-api.git",
"ssh_url": "git@github.com:hub4j-test-org/github-api.git",
"clone_url": "https://github.com/hub4j-test-org/github-api.git",
@@ -300,28 +300,28 @@
},
"_links": {
"self": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/416"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/427"
},
"html": {
"href": "https://github.com/hub4j-test-org/github-api/pull/416"
"href": "https://github.com/hub4j-test-org/github-api/pull/427"
},
"issue": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/416"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/427"
},
"comments": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/416/comments"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/427/comments"
},
"review_comments": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/416/comments"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/427/comments"
},
"review_comment": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments{/number}"
},
"commits": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/416/commits"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/427/commits"
},
"statuses": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/07374fe73aff1c2024a8d4114b32406c7a8e89b7"
}
},
"author_association": "MEMBER",
@@ -335,8 +335,8 @@
"comments": 0,
"review_comments": 0,
"maintainer_can_modify": false,
"commits": 2,
"additions": 2,
"deletions": 1,
"changed_files": 1
"commits": 3,
"additions": 3,
"deletions": 2,
"changed_files": 2
}

View File

@@ -1,41 +1,41 @@
{
"url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/416",
"id": 589575707,
"node_id": "MDExOlB1bGxSZXF1ZXN0NTg5NTc1NzA3",
"html_url": "https://github.com/hub4j-test-org/github-api/pull/416",
"diff_url": "https://github.com/hub4j-test-org/github-api/pull/416.diff",
"patch_url": "https://github.com/hub4j-test-org/github-api/pull/416.patch",
"issue_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/416",
"number": 416,
"url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/427",
"id": 592265167,
"node_id": "MDExOlB1bGxSZXF1ZXN0NTkyMjY1MTY3",
"html_url": "https://github.com/hub4j-test-org/github-api/pull/427",
"diff_url": "https://github.com/hub4j-test-org/github-api/pull/427.diff",
"patch_url": "https://github.com/hub4j-test-org/github-api/pull/427.patch",
"issue_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/427",
"number": 427,
"state": "open",
"locked": false,
"title": "addLabels",
"user": {
"login": "gsmet",
"id": 1279749,
"node_id": "MDQ6VXNlcjEyNzk3NDk=",
"avatar_url": "https://avatars.githubusercontent.com/u/1279749?v=4",
"login": "bitwiseman",
"id": 1958953,
"node_id": "MDQ6VXNlcjE5NTg5NTM=",
"avatar_url": "https://avatars.githubusercontent.com/u/1958953?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/gsmet",
"html_url": "https://github.com/gsmet",
"followers_url": "https://api.github.com/users/gsmet/followers",
"following_url": "https://api.github.com/users/gsmet/following{/other_user}",
"gists_url": "https://api.github.com/users/gsmet/gists{/gist_id}",
"starred_url": "https://api.github.com/users/gsmet/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gsmet/subscriptions",
"organizations_url": "https://api.github.com/users/gsmet/orgs",
"repos_url": "https://api.github.com/users/gsmet/repos",
"events_url": "https://api.github.com/users/gsmet/events{/privacy}",
"received_events_url": "https://api.github.com/users/gsmet/received_events",
"url": "https://api.github.com/users/bitwiseman",
"html_url": "https://github.com/bitwiseman",
"followers_url": "https://api.github.com/users/bitwiseman/followers",
"following_url": "https://api.github.com/users/bitwiseman/following{/other_user}",
"gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions",
"organizations_url": "https://api.github.com/users/bitwiseman/orgs",
"repos_url": "https://api.github.com/users/bitwiseman/repos",
"events_url": "https://api.github.com/users/bitwiseman/events{/privacy}",
"received_events_url": "https://api.github.com/users/bitwiseman/received_events",
"type": "User",
"site_admin": false
},
"body": "## test",
"created_at": "2021-03-10T12:52:16Z",
"updated_at": "2021-03-10T12:52:17Z",
"created_at": "2021-03-13T01:53:58Z",
"updated_at": "2021-03-13T01:53:59Z",
"closed_at": null,
"merged_at": null,
"merge_commit_sha": "fbaecaaa774e62a06f9719d4033f099be2283cbe",
"merge_commit_sha": "e08c499aa4591a7518e97ea57cbbdecda61a73d9",
"assignee": null,
"assignees": [],
"requested_reviewers": [],
@@ -71,15 +71,15 @@
],
"milestone": null,
"draft": false,
"commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/416/commits",
"review_comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/416/comments",
"commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/427/commits",
"review_comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/427/comments",
"review_comment_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments{/number}",
"comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/416/comments",
"statuses_url": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8",
"comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/427/comments",
"statuses_url": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/07374fe73aff1c2024a8d4114b32406c7a8e89b7",
"head": {
"label": "hub4j-test-org:test/stable",
"ref": "test/stable",
"sha": "1f40fdf4acf1adb246c109c21a22f617e4bd1ca8",
"sha": "07374fe73aff1c2024a8d4114b32406c7a8e89b7",
"user": {
"login": "hub4j-test-org",
"id": 7544739,
@@ -168,7 +168,7 @@
"deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments",
"created_at": "2019-09-06T23:26:04Z",
"updated_at": "2021-01-22T03:50:37Z",
"pushed_at": "2021-03-10T12:52:16Z",
"pushed_at": "2021-03-13T01:53:58Z",
"git_url": "git://github.com/hub4j-test-org/github-api.git",
"ssh_url": "git@github.com:hub4j-test-org/github-api.git",
"clone_url": "https://github.com/hub4j-test-org/github-api.git",
@@ -293,7 +293,7 @@
"deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments",
"created_at": "2019-09-06T23:26:04Z",
"updated_at": "2021-01-22T03:50:37Z",
"pushed_at": "2021-03-10T12:52:16Z",
"pushed_at": "2021-03-13T01:53:58Z",
"git_url": "git://github.com/hub4j-test-org/github-api.git",
"ssh_url": "git@github.com:hub4j-test-org/github-api.git",
"clone_url": "https://github.com/hub4j-test-org/github-api.git",
@@ -328,28 +328,28 @@
},
"_links": {
"self": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/416"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/427"
},
"html": {
"href": "https://github.com/hub4j-test-org/github-api/pull/416"
"href": "https://github.com/hub4j-test-org/github-api/pull/427"
},
"issue": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/416"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/427"
},
"comments": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/416/comments"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/427/comments"
},
"review_comments": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/416/comments"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/427/comments"
},
"review_comment": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments{/number}"
},
"commits": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/416/commits"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/427/commits"
},
"statuses": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/07374fe73aff1c2024a8d4114b32406c7a8e89b7"
}
},
"author_association": "MEMBER",
@@ -358,13 +358,13 @@
"merged": false,
"mergeable": true,
"rebaseable": true,
"mergeable_state": "clean",
"mergeable_state": "unstable",
"merged_by": null,
"comments": 0,
"review_comments": 0,
"maintainer_can_modify": false,
"commits": 2,
"additions": 2,
"deletions": 1,
"changed_files": 1
"commits": 3,
"additions": 3,
"deletions": 2,
"changed_files": 2
}

View File

@@ -1,41 +1,41 @@
{
"login": "gsmet",
"id": 1279749,
"node_id": "MDQ6VXNlcjEyNzk3NDk=",
"avatar_url": "https://avatars.githubusercontent.com/u/1279749?v=4",
"login": "bitwiseman",
"id": 1958953,
"node_id": "MDQ6VXNlcjE5NTg5NTM=",
"avatar_url": "https://avatars.githubusercontent.com/u/1958953?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/gsmet",
"html_url": "https://github.com/gsmet",
"followers_url": "https://api.github.com/users/gsmet/followers",
"following_url": "https://api.github.com/users/gsmet/following{/other_user}",
"gists_url": "https://api.github.com/users/gsmet/gists{/gist_id}",
"starred_url": "https://api.github.com/users/gsmet/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gsmet/subscriptions",
"organizations_url": "https://api.github.com/users/gsmet/orgs",
"repos_url": "https://api.github.com/users/gsmet/repos",
"events_url": "https://api.github.com/users/gsmet/events{/privacy}",
"received_events_url": "https://api.github.com/users/gsmet/received_events",
"url": "https://api.github.com/users/bitwiseman",
"html_url": "https://github.com/bitwiseman",
"followers_url": "https://api.github.com/users/bitwiseman/followers",
"following_url": "https://api.github.com/users/bitwiseman/following{/other_user}",
"gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions",
"organizations_url": "https://api.github.com/users/bitwiseman/orgs",
"repos_url": "https://api.github.com/users/bitwiseman/repos",
"events_url": "https://api.github.com/users/bitwiseman/events{/privacy}",
"received_events_url": "https://api.github.com/users/bitwiseman/received_events",
"type": "User",
"site_admin": false,
"name": "Guillaume Smet",
"company": "Red Hat",
"blog": "https://www.redhat.com/",
"location": "Lyon, France",
"email": "guillaume.smet@gmail.com",
"name": "Liam Newman",
"company": "Cloudbees, Inc.",
"blog": "",
"location": "Seattle, WA, USA",
"email": "bitwiseman@gmail.com",
"hireable": null,
"bio": "Happy camper at Red Hat, working on Quarkus and the Hibernate portfolio.",
"twitter_username": "gsmet_",
"public_repos": 98,
"public_gists": 14,
"followers": 126,
"following": 3,
"created_at": "2011-12-22T11:03:22Z",
"updated_at": "2021-03-09T14:33:13Z",
"private_gists": 14,
"total_private_repos": 5,
"owned_private_repos": 2,
"disk_usage": 68251,
"collaborators": 1,
"bio": null,
"twitter_username": "bitwiseman",
"public_repos": 204,
"public_gists": 8,
"followers": 181,
"following": 11,
"created_at": "2012-07-11T20:38:33Z",
"updated_at": "2021-03-13T00:53:04Z",
"private_gists": 19,
"total_private_repos": 19,
"owned_private_repos": 0,
"disk_usage": 33700,
"collaborators": 0,
"two_factor_authentication": true,
"plan": {
"name": "free",

View File

@@ -1,5 +1,5 @@
{
"id": "d311020d-fc5e-4990-baa5-0b238b9fdbb9",
"id": "2ead2b94-b3c5-4e2d-8daf-72393c55460a",
"name": "orgs_hub4j-test-org",
"request": {
"url": "/orgs/hub4j-test-org",
@@ -15,32 +15,32 @@
"bodyFileName": "orgs_hub4j-test-org-2.json",
"headers": {
"Server": "GitHub.com",
"Date": "Wed, 10 Mar 2021 12:52:15 GMT",
"Date": "Sat, 13 Mar 2021 01:53:58 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "W/\"d6f1aee416a47d2dfaf1035d78565b329beaee365900d5a707e780abcb30f9ce\"",
"ETag": "W/\"8d03272a59bcf3983cb9122b62f919c03829bc402e1306b087a70015b94507ea\"",
"Last-Modified": "Thu, 04 Jun 2020 05:56:10 GMT",
"X-OAuth-Scopes": "repo, user",
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
"X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4431",
"X-RateLimit-Reset": "1615382444",
"X-RateLimit-Used": "569",
"X-RateLimit-Remaining": "4978",
"X-RateLimit-Reset": "1615604003",
"X-RateLimit-Used": "22",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"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": "B70E:10969:3CD215D:3F3BD72:6048C0FF"
"X-GitHub-Request-Id": "C596:3EFB:4DAB08:533084:604C1B36"
}
},
"uuid": "d311020d-fc5e-4990-baa5-0b238b9fdbb9",
"uuid": "2ead2b94-b3c5-4e2d-8daf-72393c55460a",
"persistent": true,
"insertionIndex": 2
}

View File

@@ -1,5 +1,5 @@
{
"id": "e1927f72-1965-4423-9811-a2896da1cb52",
"id": "b321121e-5eec-460d-8717-6aedbcaf963c",
"name": "repos_hub4j-test-org_github-api",
"request": {
"url": "/repos/hub4j-test-org/github-api",
@@ -15,32 +15,32 @@
"bodyFileName": "repos_hub4j-test-org_github-api-3.json",
"headers": {
"Server": "GitHub.com",
"Date": "Wed, 10 Mar 2021 12:52:15 GMT",
"Date": "Sat, 13 Mar 2021 01:53:58 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "W/\"b2ab8e633ddf78ccbf3d8106d15d5976fb35f8e5ef7e7243958a903a561fd008\"",
"ETag": "W/\"e19e79c782692697a1cf15934643f557a23ab57e363a5d7efef4a98b0cd28b6f\"",
"Last-Modified": "Fri, 22 Jan 2021 03:50:37 GMT",
"X-OAuth-Scopes": "repo, user",
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
"X-Accepted-OAuth-Scopes": "repo",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4430",
"X-RateLimit-Reset": "1615382444",
"X-RateLimit-Used": "570",
"X-RateLimit-Remaining": "4977",
"X-RateLimit-Reset": "1615604003",
"X-RateLimit-Used": "23",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"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": "B70E:10969:3CD2175:3F3BD8D:6048C0FF"
"X-GitHub-Request-Id": "C596:3EFB:4DAB15:533092:604C1B36"
}
},
"uuid": "e1927f72-1965-4423-9811-a2896da1cb52",
"uuid": "b321121e-5eec-460d-8717-6aedbcaf963c",
"persistent": true,
"scenarioName": "scenario-1-repos-hub4j-test-org-github-api",
"requiredScenarioState": "Started",

View File

@@ -1,5 +1,5 @@
{
"id": "30ba9290-62b1-4f3f-9e34-5198f6d4d9b6",
"id": "c637ff98-e38a-4057-97ae-461884dbeea9",
"name": "repos_hub4j-test-org_github-api",
"request": {
"url": "/repos/hub4j-test-org/github-api",
@@ -15,32 +15,32 @@
"bodyFileName": "repos_hub4j-test-org_github-api-7.json",
"headers": {
"Server": "GitHub.com",
"Date": "Wed, 10 Mar 2021 12:52:17 GMT",
"Date": "Sat, 13 Mar 2021 01:54:00 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "W/\"13249f3618643205f9661609855e513e6dd203ef2efe0a6523a10fb33727fe3a\"",
"ETag": "W/\"a88c949ca88518c6341476ee1f6f47f86bb86fd0a3216696c67af4ceb28afcc7\"",
"Last-Modified": "Fri, 22 Jan 2021 03:50:37 GMT",
"X-OAuth-Scopes": "repo, user",
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
"X-Accepted-OAuth-Scopes": "repo",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4426",
"X-RateLimit-Reset": "1615382444",
"X-RateLimit-Used": "574",
"X-RateLimit-Remaining": "4973",
"X-RateLimit-Reset": "1615604003",
"X-RateLimit-Used": "27",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"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": "B70E:10969:3CD2268:3F3BE8D:6048C101"
"X-GitHub-Request-Id": "C596:3EFB:4DABB1:533144:604C1B37"
}
},
"uuid": "30ba9290-62b1-4f3f-9e34-5198f6d4d9b6",
"uuid": "c637ff98-e38a-4057-97ae-461884dbeea9",
"persistent": true,
"scenarioName": "scenario-1-repos-hub4j-test-org-github-api",
"requiredScenarioState": "scenario-1-repos-hub4j-test-org-github-api-2",

View File

@@ -1,8 +1,8 @@
{
"id": "7caeed60-b9cf-472e-9ba7-08d1372de19c",
"name": "repos_hub4j-test-org_github-api_issues_416_labels",
"id": "3eb12555-549d-40a4-a2a2-768a52f19f45",
"name": "repos_hub4j-test-org_github-api_issues_427_labels",
"request": {
"url": "/repos/hub4j-test-org/github-api/issues/416/labels",
"url": "/repos/hub4j-test-org/github-api/issues/427/labels",
"method": "POST",
"headers": {
"Accept": {
@@ -22,31 +22,34 @@
"body": "[{\"id\":2806272360,\"node_id\":\"MDU6TGFiZWwyODA2MjcyMzYw\",\"url\":\"https://api.github.com/repos/hub4j-test-org/github-api/labels/addLabels_label_name_1\",\"name\":\"addLabels_label_name_1\",\"color\":\"ededed\",\"default\":false,\"description\":null}]",
"headers": {
"Server": "GitHub.com",
"Date": "Wed, 10 Mar 2021 12:52:16 GMT",
"Date": "Sat, 13 Mar 2021 01:53:59 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "W/\"e3d0fd12057f6adb3f6d44b4bbd350d297de047fb096b554ab9156f0ac52214a\"",
"X-OAuth-Scopes": "repo, user",
"ETag": "W/\"5ee589724d8bcbfb03a8177190eb68d2ad8592678e9f6960177ae5a8fb8015c7\"",
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
"X-Accepted-OAuth-Scopes": "",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4428",
"X-RateLimit-Reset": "1615382444",
"X-RateLimit-Used": "572",
"X-RateLimit-Remaining": "4975",
"X-RateLimit-Reset": "1615604003",
"X-RateLimit-Used": "25",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"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": "B70E:10969:3CD21E6:3F3BE04:6048C100"
"X-GitHub-Request-Id": "C596:3EFB:4DAB68:5330F0:604C1B37"
}
},
"uuid": "7caeed60-b9cf-472e-9ba7-08d1372de19c",
"uuid": "3eb12555-549d-40a4-a2a2-768a52f19f45",
"persistent": true,
"scenarioName": "scenario-2-repos-hub4j-test-org-github-api-issues-427-labels",
"requiredScenarioState": "Started",
"newScenarioState": "scenario-2-repos-hub4j-test-org-github-api-issues-427-labels-2",
"insertionIndex": 5
}

View File

@@ -1,8 +1,8 @@
{
"id": "0e973c00-0b1e-4fbe-97bd-d1d03dc05325",
"name": "repos_hub4j-test-org_github-api_issues_416_labels",
"id": "9bd9b0f1-d876-45dd-98c7-c551a4115633",
"name": "repos_hub4j-test-org_github-api_issues_427_labels",
"request": {
"url": "/repos/hub4j-test-org/github-api/issues/416/labels",
"url": "/repos/hub4j-test-org/github-api/issues/427/labels",
"method": "POST",
"headers": {
"Accept": {
@@ -19,34 +19,34 @@
},
"response": {
"status": 200,
"bodyFileName": "repos_hub4j-test-org_github-api_issues_416_labels-6.json",
"bodyFileName": "repos_hub4j-test-org_github-api_issues_427_labels-6.json",
"headers": {
"Server": "GitHub.com",
"Date": "Wed, 10 Mar 2021 12:52:17 GMT",
"Date": "Sat, 13 Mar 2021 01:53:59 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "W/\"b8933b8c8f41429c9937dc3c237eee7fbae04be210ef51b6416b28886f35f7cb\"",
"X-OAuth-Scopes": "repo, user",
"ETag": "W/\"2f80c320a0edd8f013bcc0faf5052d1c2b2ec1b738c44a1bbe92bb1edb5ac93f\"",
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
"X-Accepted-OAuth-Scopes": "",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4427",
"X-RateLimit-Reset": "1615382444",
"X-RateLimit-Used": "573",
"X-RateLimit-Remaining": "4974",
"X-RateLimit-Reset": "1615604003",
"X-RateLimit-Used": "26",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"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": "B70E:10969:3CD221B:3F3BE40:6048C100"
"X-GitHub-Request-Id": "C596:3EFB:4DAB90:533119:604C1B37"
}
},
"uuid": "0e973c00-0b1e-4fbe-97bd-d1d03dc05325",
"uuid": "9bd9b0f1-d876-45dd-98c7-c551a4115633",
"persistent": true,
"insertionIndex": 6
}

View File

@@ -0,0 +1,54 @@
{
"id": "3d7c7ea1-fe75-4a59-a2c0-73bc38a3d299",
"name": "repos_hub4j-test-org_github-api_issues_427_labels",
"request": {
"url": "/repos/hub4j-test-org/github-api/issues/427/labels",
"method": "POST",
"headers": {
"Accept": {
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
}
},
"bodyPatterns": [
{
"equalToJson": "{\"labels\":[\"addLabels_label_name_1\"]}",
"ignoreArrayOrder": true,
"ignoreExtraElements": false
}
]
},
"response": {
"status": 200,
"bodyFileName": "repos_hub4j-test-org_github-api_issues_427_labels-9.json",
"headers": {
"Server": "GitHub.com",
"Date": "Sat, 13 Mar 2021 01:54:00 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "W/\"2f80c320a0edd8f013bcc0faf5052d1c2b2ec1b738c44a1bbe92bb1edb5ac93f\"",
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
"X-Accepted-OAuth-Scopes": "",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4971",
"X-RateLimit-Reset": "1615604003",
"X-RateLimit-Used": "29",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"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": "C596:3EFB:4DABED:533190:604C1B38"
}
},
"uuid": "3d7c7ea1-fe75-4a59-a2c0-73bc38a3d299",
"persistent": true,
"scenarioName": "scenario-2-repos-hub4j-test-org-github-api-issues-427-labels",
"requiredScenarioState": "scenario-2-repos-hub4j-test-org-github-api-issues-427-labels-2",
"insertionIndex": 9
}

View File

@@ -1,5 +1,5 @@
{
"id": "566a01cf-c9a4-4a1d-ae15-ce28cea04a07",
"id": "78c26535-9327-4419-9814-a773eb7edf0c",
"name": "repos_hub4j-test-org_github-api_pulls",
"request": {
"url": "/repos/hub4j-test-org/github-api/pulls",
@@ -22,32 +22,32 @@
"bodyFileName": "repos_hub4j-test-org_github-api_pulls-4.json",
"headers": {
"Server": "GitHub.com",
"Date": "Wed, 10 Mar 2021 12:52:16 GMT",
"Date": "Sat, 13 Mar 2021 01:53:59 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "\"a32b3ff45e43333627a8eb0f4bf1d4f70a2a55687284dfb9507d4351edce5e27\"",
"X-OAuth-Scopes": "repo, user",
"ETag": "\"a6bd1620ffa3d594641e7768679b1b8f66671eba8931acf4774e8efe0f4f2b03\"",
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
"X-Accepted-OAuth-Scopes": "",
"X-GitHub-Media-Type": "github.v3; param=shadow-cat-preview; format=json",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4429",
"X-RateLimit-Reset": "1615382444",
"X-RateLimit-Used": "571",
"X-RateLimit-Remaining": "4976",
"X-RateLimit-Reset": "1615604003",
"X-RateLimit-Used": "24",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"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": "B70E:10969:3CD2198:3F3BDAB:6048C0FF",
"Location": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/416"
"X-GitHub-Request-Id": "C596:3EFB:4DAB21:5330A6:604C1B36",
"Location": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/427"
}
},
"uuid": "566a01cf-c9a4-4a1d-ae15-ce28cea04a07",
"uuid": "78c26535-9327-4419-9814-a773eb7edf0c",
"persistent": true,
"insertionIndex": 4
}

View File

@@ -1,8 +1,8 @@
{
"id": "ce78aa1f-5a45-463a-a3e0-efa91a8ca420",
"name": "repos_hub4j-test-org_github-api_pulls_416",
"id": "9294cf92-f4df-471f-98f8-a213ed51b636",
"name": "repos_hub4j-test-org_github-api_pulls_427",
"request": {
"url": "/repos/hub4j-test-org/github-api/pulls/416",
"url": "/repos/hub4j-test-org/github-api/pulls/427",
"method": "GET",
"headers": {
"Accept": {
@@ -12,35 +12,35 @@
},
"response": {
"status": 200,
"bodyFileName": "repos_hub4j-test-org_github-api_pulls_416-8.json",
"bodyFileName": "repos_hub4j-test-org_github-api_pulls_427-8.json",
"headers": {
"Server": "GitHub.com",
"Date": "Wed, 10 Mar 2021 12:52:17 GMT",
"Date": "Sat, 13 Mar 2021 01:54:00 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "W/\"66c0796ad6804b5febbaec6f5b61deaff360850651d4c4919a0d8a737c40cbdb\"",
"Last-Modified": "Wed, 10 Mar 2021 12:52:17 GMT",
"X-OAuth-Scopes": "repo, user",
"ETag": "W/\"a62e3640060d49dba631652313501f39e107aea3ae5eff85462b5d55965132b5\"",
"Last-Modified": "Sat, 13 Mar 2021 01:53:59 GMT",
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
"X-Accepted-OAuth-Scopes": "",
"X-GitHub-Media-Type": "github.v3; param=shadow-cat-preview; format=json",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4425",
"X-RateLimit-Reset": "1615382444",
"X-RateLimit-Used": "575",
"X-RateLimit-Remaining": "4972",
"X-RateLimit-Reset": "1615604003",
"X-RateLimit-Used": "28",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"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": "B70E:10969:3CD228C:3F3BEB4:6048C101"
"X-GitHub-Request-Id": "C596:3EFB:4DABCD:533161:604C1B38"
}
},
"uuid": "ce78aa1f-5a45-463a-a3e0-efa91a8ca420",
"uuid": "9294cf92-f4df-471f-98f8-a213ed51b636",
"persistent": true,
"insertionIndex": 8
}

View File

@@ -1,5 +1,5 @@
{
"id": "3155351b-dc39-450c-b08e-d26d78697ea4",
"id": "f0177d94-b6bb-44ee-939a-6a5acff831b8",
"name": "user",
"request": {
"url": "/user",
@@ -15,32 +15,32 @@
"bodyFileName": "user-1.json",
"headers": {
"Server": "GitHub.com",
"Date": "Wed, 10 Mar 2021 12:52:14 GMT",
"Date": "Sat, 13 Mar 2021 01:53:57 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "W/\"ae9f81b98579088c92fa7db16f009a42ddbc9ba377a0fd2f76ebe38bcee68a2f\"",
"Last-Modified": "Tue, 09 Mar 2021 14:33:13 GMT",
"X-OAuth-Scopes": "repo, user",
"ETag": "W/\"2822a9e2f360a7908be6027a75d37eebff6e63fc94c67aceefb1e25113b3240e\"",
"Last-Modified": "Sat, 13 Mar 2021 00:53:04 GMT",
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
"X-Accepted-OAuth-Scopes": "",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4436",
"X-RateLimit-Reset": "1615382444",
"X-RateLimit-Used": "564",
"X-RateLimit-Remaining": "4983",
"X-RateLimit-Reset": "1615604003",
"X-RateLimit-Used": "17",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"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": "B70E:10969:3CD20DC:3F3BCF1:6048C0FE"
"X-GitHub-Request-Id": "C596:3EFB:4DAAB7:533032:604C1B35"
}
},
"uuid": "3155351b-dc39-450c-b08e-d26d78697ea4",
"uuid": "f0177d94-b6bb-44ee-939a-6a5acff831b8",
"persistent": true,
"insertionIndex": 1
}

View File

@@ -66,7 +66,7 @@
"deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments",
"created_at": "2019-09-06T23:26:04Z",
"updated_at": "2021-01-22T03:50:37Z",
"pushed_at": "2021-03-10T12:52:04Z",
"pushed_at": "2021-03-13T01:48:43Z",
"git_url": "git://github.com/hub4j-test-org/github-api.git",
"ssh_url": "git@github.com:hub4j-test-org/github-api.git",
"clone_url": "https://github.com/hub4j-test-org/github-api.git",
@@ -195,7 +195,7 @@
"deployments_url": "https://api.github.com/repos/hub4j/github-api/deployments",
"created_at": "2010-04-19T04:13:03Z",
"updated_at": "2021-03-10T10:27:30Z",
"pushed_at": "2021-03-10T02:45:39Z",
"pushed_at": "2021-03-10T13:03:30Z",
"git_url": "git://github.com/hub4j/github-api.git",
"ssh_url": "git@github.com:hub4j/github-api.git",
"clone_url": "https://github.com/hub4j/github-api.git",
@@ -210,7 +210,7 @@
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"forks_count": 529,
"forks_count": 530,
"mirror_url": null,
"archived": false,
"disabled": false,
@@ -222,7 +222,7 @@
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 529,
"forks": 530,
"open_issues": 77,
"watchers": 740,
"default_branch": "master"
@@ -295,7 +295,7 @@
"deployments_url": "https://api.github.com/repos/hub4j/github-api/deployments",
"created_at": "2010-04-19T04:13:03Z",
"updated_at": "2021-03-10T10:27:30Z",
"pushed_at": "2021-03-10T02:45:39Z",
"pushed_at": "2021-03-10T13:03:30Z",
"git_url": "git://github.com/hub4j/github-api.git",
"ssh_url": "git@github.com:hub4j/github-api.git",
"clone_url": "https://github.com/hub4j/github-api.git",
@@ -310,7 +310,7 @@
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"forks_count": 529,
"forks_count": 530,
"mirror_url": null,
"archived": false,
"disabled": false,
@@ -322,11 +322,11 @@
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 529,
"forks": 530,
"open_issues": 77,
"watchers": 740,
"default_branch": "master"
},
"network_count": 529,
"network_count": 530,
"subscribers_count": 0
}

View File

@@ -66,7 +66,7 @@
"deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments",
"created_at": "2019-09-06T23:26:04Z",
"updated_at": "2021-01-22T03:50:37Z",
"pushed_at": "2021-03-10T12:50:54Z",
"pushed_at": "2021-03-13T01:48:09Z",
"git_url": "git://github.com/hub4j-test-org/github-api.git",
"ssh_url": "git@github.com:hub4j-test-org/github-api.git",
"clone_url": "https://github.com/hub4j-test-org/github-api.git",
@@ -195,7 +195,7 @@
"deployments_url": "https://api.github.com/repos/hub4j/github-api/deployments",
"created_at": "2010-04-19T04:13:03Z",
"updated_at": "2021-03-10T10:27:30Z",
"pushed_at": "2021-03-10T02:45:39Z",
"pushed_at": "2021-03-10T13:03:30Z",
"git_url": "git://github.com/hub4j/github-api.git",
"ssh_url": "git@github.com:hub4j/github-api.git",
"clone_url": "https://github.com/hub4j/github-api.git",
@@ -210,7 +210,7 @@
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"forks_count": 529,
"forks_count": 530,
"mirror_url": null,
"archived": false,
"disabled": false,
@@ -222,7 +222,7 @@
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 529,
"forks": 530,
"open_issues": 77,
"watchers": 740,
"default_branch": "master"
@@ -295,7 +295,7 @@
"deployments_url": "https://api.github.com/repos/hub4j/github-api/deployments",
"created_at": "2010-04-19T04:13:03Z",
"updated_at": "2021-03-10T10:27:30Z",
"pushed_at": "2021-03-10T02:45:39Z",
"pushed_at": "2021-03-10T13:03:30Z",
"git_url": "git://github.com/hub4j/github-api.git",
"ssh_url": "git@github.com:hub4j/github-api.git",
"clone_url": "https://github.com/hub4j/github-api.git",
@@ -310,7 +310,7 @@
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"forks_count": 529,
"forks_count": 530,
"mirror_url": null,
"archived": false,
"disabled": false,
@@ -322,11 +322,11 @@
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 529,
"forks": 530,
"open_issues": 77,
"watchers": 740,
"default_branch": "master"
},
"network_count": 529,
"network_count": 530,
"subscribers_count": 0
}

View File

@@ -66,7 +66,7 @@
"deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments",
"created_at": "2019-09-06T23:26:04Z",
"updated_at": "2021-01-22T03:50:37Z",
"pushed_at": "2021-03-10T12:52:04Z",
"pushed_at": "2021-03-13T01:48:43Z",
"git_url": "git://github.com/hub4j-test-org/github-api.git",
"ssh_url": "git@github.com:hub4j-test-org/github-api.git",
"clone_url": "https://github.com/hub4j-test-org/github-api.git",
@@ -195,7 +195,7 @@
"deployments_url": "https://api.github.com/repos/hub4j/github-api/deployments",
"created_at": "2010-04-19T04:13:03Z",
"updated_at": "2021-03-10T10:27:30Z",
"pushed_at": "2021-03-10T02:45:39Z",
"pushed_at": "2021-03-10T13:03:30Z",
"git_url": "git://github.com/hub4j/github-api.git",
"ssh_url": "git@github.com:hub4j/github-api.git",
"clone_url": "https://github.com/hub4j/github-api.git",
@@ -210,7 +210,7 @@
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"forks_count": 529,
"forks_count": 530,
"mirror_url": null,
"archived": false,
"disabled": false,
@@ -222,7 +222,7 @@
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 529,
"forks": 530,
"open_issues": 77,
"watchers": 740,
"default_branch": "master"
@@ -295,7 +295,7 @@
"deployments_url": "https://api.github.com/repos/hub4j/github-api/deployments",
"created_at": "2010-04-19T04:13:03Z",
"updated_at": "2021-03-10T10:27:30Z",
"pushed_at": "2021-03-10T02:45:39Z",
"pushed_at": "2021-03-10T13:03:30Z",
"git_url": "git://github.com/hub4j/github-api.git",
"ssh_url": "git@github.com:hub4j/github-api.git",
"clone_url": "https://github.com/hub4j/github-api.git",
@@ -310,7 +310,7 @@
"has_downloads": true,
"has_wiki": true,
"has_pages": true,
"forks_count": 529,
"forks_count": 530,
"mirror_url": null,
"archived": false,
"disabled": false,
@@ -322,11 +322,11 @@
"url": "https://api.github.com/licenses/mit",
"node_id": "MDc6TGljZW5zZTEz"
},
"forks": 529,
"forks": 530,
"open_issues": 77,
"watchers": 740,
"default_branch": "master"
},
"network_count": 529,
"network_count": 530,
"subscribers_count": 0
}

View File

@@ -1,31 +1,31 @@
{
"url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/415",
"url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/425",
"repository_url": "https://api.github.com/repos/hub4j-test-org/github-api",
"labels_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/415/labels{/name}",
"comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/415/comments",
"events_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/415/events",
"html_url": "https://github.com/hub4j-test-org/github-api/pull/415",
"id": 827690237,
"node_id": "MDExOlB1bGxSZXF1ZXN0NTg5NTc1NDQ5",
"number": 415,
"labels_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/425/labels{/name}",
"comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/425/comments",
"events_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/425/events",
"html_url": "https://github.com/hub4j-test-org/github-api/pull/425",
"id": 830772511,
"node_id": "MDExOlB1bGxSZXF1ZXN0NTkyMjY0Mjkx",
"number": 425,
"title": "removeLabels",
"user": {
"login": "gsmet",
"id": 1279749,
"node_id": "MDQ6VXNlcjEyNzk3NDk=",
"avatar_url": "https://avatars.githubusercontent.com/u/1279749?v=4",
"login": "bitwiseman",
"id": 1958953,
"node_id": "MDQ6VXNlcjE5NTg5NTM=",
"avatar_url": "https://avatars.githubusercontent.com/u/1958953?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/gsmet",
"html_url": "https://github.com/gsmet",
"followers_url": "https://api.github.com/users/gsmet/followers",
"following_url": "https://api.github.com/users/gsmet/following{/other_user}",
"gists_url": "https://api.github.com/users/gsmet/gists{/gist_id}",
"starred_url": "https://api.github.com/users/gsmet/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gsmet/subscriptions",
"organizations_url": "https://api.github.com/users/gsmet/orgs",
"repos_url": "https://api.github.com/users/gsmet/repos",
"events_url": "https://api.github.com/users/gsmet/events{/privacy}",
"received_events_url": "https://api.github.com/users/gsmet/received_events",
"url": "https://api.github.com/users/bitwiseman",
"html_url": "https://github.com/bitwiseman",
"followers_url": "https://api.github.com/users/bitwiseman/followers",
"following_url": "https://api.github.com/users/bitwiseman/following{/other_user}",
"gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions",
"organizations_url": "https://api.github.com/users/bitwiseman/orgs",
"repos_url": "https://api.github.com/users/bitwiseman/repos",
"events_url": "https://api.github.com/users/bitwiseman/events{/privacy}",
"received_events_url": "https://api.github.com/users/bitwiseman/received_events",
"type": "User",
"site_admin": false
},
@@ -64,16 +64,16 @@
"assignees": [],
"milestone": null,
"comments": 0,
"created_at": "2021-03-10T12:52:04Z",
"updated_at": "2021-03-10T12:52:04Z",
"created_at": "2021-03-13T01:48:43Z",
"updated_at": "2021-03-13T01:48:44Z",
"closed_at": null,
"author_association": "MEMBER",
"active_lock_reason": null,
"pull_request": {
"url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/415",
"html_url": "https://github.com/hub4j-test-org/github-api/pull/415",
"diff_url": "https://github.com/hub4j-test-org/github-api/pull/415.diff",
"patch_url": "https://github.com/hub4j-test-org/github-api/pull/415.patch"
"url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/425",
"html_url": "https://github.com/hub4j-test-org/github-api/pull/425",
"diff_url": "https://github.com/hub4j-test-org/github-api/pull/425.diff",
"patch_url": "https://github.com/hub4j-test-org/github-api/pull/425.patch"
},
"body": "## test",
"closed_by": null,

View File

@@ -1,38 +1,38 @@
{
"url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/415",
"id": 589575449,
"node_id": "MDExOlB1bGxSZXF1ZXN0NTg5NTc1NDQ5",
"html_url": "https://github.com/hub4j-test-org/github-api/pull/415",
"diff_url": "https://github.com/hub4j-test-org/github-api/pull/415.diff",
"patch_url": "https://github.com/hub4j-test-org/github-api/pull/415.patch",
"issue_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/415",
"number": 415,
"url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/425",
"id": 592264291,
"node_id": "MDExOlB1bGxSZXF1ZXN0NTkyMjY0Mjkx",
"html_url": "https://github.com/hub4j-test-org/github-api/pull/425",
"diff_url": "https://github.com/hub4j-test-org/github-api/pull/425.diff",
"patch_url": "https://github.com/hub4j-test-org/github-api/pull/425.patch",
"issue_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/425",
"number": 425,
"state": "open",
"locked": false,
"title": "removeLabels",
"user": {
"login": "gsmet",
"id": 1279749,
"node_id": "MDQ6VXNlcjEyNzk3NDk=",
"avatar_url": "https://avatars.githubusercontent.com/u/1279749?v=4",
"login": "bitwiseman",
"id": 1958953,
"node_id": "MDQ6VXNlcjE5NTg5NTM=",
"avatar_url": "https://avatars.githubusercontent.com/u/1958953?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/gsmet",
"html_url": "https://github.com/gsmet",
"followers_url": "https://api.github.com/users/gsmet/followers",
"following_url": "https://api.github.com/users/gsmet/following{/other_user}",
"gists_url": "https://api.github.com/users/gsmet/gists{/gist_id}",
"starred_url": "https://api.github.com/users/gsmet/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gsmet/subscriptions",
"organizations_url": "https://api.github.com/users/gsmet/orgs",
"repos_url": "https://api.github.com/users/gsmet/repos",
"events_url": "https://api.github.com/users/gsmet/events{/privacy}",
"received_events_url": "https://api.github.com/users/gsmet/received_events",
"url": "https://api.github.com/users/bitwiseman",
"html_url": "https://github.com/bitwiseman",
"followers_url": "https://api.github.com/users/bitwiseman/followers",
"following_url": "https://api.github.com/users/bitwiseman/following{/other_user}",
"gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions",
"organizations_url": "https://api.github.com/users/bitwiseman/orgs",
"repos_url": "https://api.github.com/users/bitwiseman/repos",
"events_url": "https://api.github.com/users/bitwiseman/events{/privacy}",
"received_events_url": "https://api.github.com/users/bitwiseman/received_events",
"type": "User",
"site_admin": false
},
"body": "## test",
"created_at": "2021-03-10T12:52:04Z",
"updated_at": "2021-03-10T12:52:04Z",
"created_at": "2021-03-13T01:48:43Z",
"updated_at": "2021-03-13T01:48:43Z",
"closed_at": null,
"merged_at": null,
"merge_commit_sha": null,
@@ -43,10 +43,10 @@
"labels": [],
"milestone": null,
"draft": false,
"commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/415/commits",
"review_comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/415/comments",
"commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/425/commits",
"review_comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/425/comments",
"review_comment_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments{/number}",
"comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/415/comments",
"comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/425/comments",
"statuses_url": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8",
"head": {
"label": "hub4j-test-org:test/stable",
@@ -140,7 +140,7 @@
"deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments",
"created_at": "2019-09-06T23:26:04Z",
"updated_at": "2021-01-22T03:50:37Z",
"pushed_at": "2021-03-10T12:50:54Z",
"pushed_at": "2021-03-13T01:48:09Z",
"git_url": "git://github.com/hub4j-test-org/github-api.git",
"ssh_url": "git@github.com:hub4j-test-org/github-api.git",
"clone_url": "https://github.com/hub4j-test-org/github-api.git",
@@ -265,7 +265,7 @@
"deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments",
"created_at": "2019-09-06T23:26:04Z",
"updated_at": "2021-01-22T03:50:37Z",
"pushed_at": "2021-03-10T12:50:54Z",
"pushed_at": "2021-03-13T01:48:09Z",
"git_url": "git://github.com/hub4j-test-org/github-api.git",
"ssh_url": "git@github.com:hub4j-test-org/github-api.git",
"clone_url": "https://github.com/hub4j-test-org/github-api.git",
@@ -300,25 +300,25 @@
},
"_links": {
"self": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/415"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/425"
},
"html": {
"href": "https://github.com/hub4j-test-org/github-api/pull/415"
"href": "https://github.com/hub4j-test-org/github-api/pull/425"
},
"issue": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/415"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/425"
},
"comments": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/415/comments"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/425/comments"
},
"review_comments": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/415/comments"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/425/comments"
},
"review_comment": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments{/number}"
},
"commits": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/415/commits"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/425/commits"
},
"statuses": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8"

View File

@@ -1,41 +1,41 @@
{
"url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/415",
"id": 589575449,
"node_id": "MDExOlB1bGxSZXF1ZXN0NTg5NTc1NDQ5",
"html_url": "https://github.com/hub4j-test-org/github-api/pull/415",
"diff_url": "https://github.com/hub4j-test-org/github-api/pull/415.diff",
"patch_url": "https://github.com/hub4j-test-org/github-api/pull/415.patch",
"issue_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/415",
"number": 415,
"url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/425",
"id": 592264291,
"node_id": "MDExOlB1bGxSZXF1ZXN0NTkyMjY0Mjkx",
"html_url": "https://github.com/hub4j-test-org/github-api/pull/425",
"diff_url": "https://github.com/hub4j-test-org/github-api/pull/425.diff",
"patch_url": "https://github.com/hub4j-test-org/github-api/pull/425.patch",
"issue_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/425",
"number": 425,
"state": "open",
"locked": false,
"title": "removeLabels",
"user": {
"login": "gsmet",
"id": 1279749,
"node_id": "MDQ6VXNlcjEyNzk3NDk=",
"avatar_url": "https://avatars.githubusercontent.com/u/1279749?v=4",
"login": "bitwiseman",
"id": 1958953,
"node_id": "MDQ6VXNlcjE5NTg5NTM=",
"avatar_url": "https://avatars.githubusercontent.com/u/1958953?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/gsmet",
"html_url": "https://github.com/gsmet",
"followers_url": "https://api.github.com/users/gsmet/followers",
"following_url": "https://api.github.com/users/gsmet/following{/other_user}",
"gists_url": "https://api.github.com/users/gsmet/gists{/gist_id}",
"starred_url": "https://api.github.com/users/gsmet/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gsmet/subscriptions",
"organizations_url": "https://api.github.com/users/gsmet/orgs",
"repos_url": "https://api.github.com/users/gsmet/repos",
"events_url": "https://api.github.com/users/gsmet/events{/privacy}",
"received_events_url": "https://api.github.com/users/gsmet/received_events",
"url": "https://api.github.com/users/bitwiseman",
"html_url": "https://github.com/bitwiseman",
"followers_url": "https://api.github.com/users/bitwiseman/followers",
"following_url": "https://api.github.com/users/bitwiseman/following{/other_user}",
"gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions",
"organizations_url": "https://api.github.com/users/bitwiseman/orgs",
"repos_url": "https://api.github.com/users/bitwiseman/repos",
"events_url": "https://api.github.com/users/bitwiseman/events{/privacy}",
"received_events_url": "https://api.github.com/users/bitwiseman/received_events",
"type": "User",
"site_admin": false
},
"body": "## test",
"created_at": "2021-03-10T12:52:04Z",
"updated_at": "2021-03-10T12:52:06Z",
"created_at": "2021-03-13T01:48:43Z",
"updated_at": "2021-03-13T01:48:45Z",
"closed_at": null,
"merged_at": null,
"merge_commit_sha": "d7f269fe7829c25459f2f2139381b72b60de27b8",
"merge_commit_sha": "f80b1250c80c8fc3449a1301363f9662bd502119",
"assignee": null,
"assignees": [],
"requested_reviewers": [],
@@ -53,10 +53,10 @@
],
"milestone": null,
"draft": false,
"commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/415/commits",
"review_comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/415/comments",
"commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/425/commits",
"review_comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/425/comments",
"review_comment_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments{/number}",
"comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/415/comments",
"comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/425/comments",
"statuses_url": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8",
"head": {
"label": "hub4j-test-org:test/stable",
@@ -150,7 +150,7 @@
"deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments",
"created_at": "2019-09-06T23:26:04Z",
"updated_at": "2021-01-22T03:50:37Z",
"pushed_at": "2021-03-10T12:52:04Z",
"pushed_at": "2021-03-13T01:48:43Z",
"git_url": "git://github.com/hub4j-test-org/github-api.git",
"ssh_url": "git@github.com:hub4j-test-org/github-api.git",
"clone_url": "https://github.com/hub4j-test-org/github-api.git",
@@ -275,7 +275,7 @@
"deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments",
"created_at": "2019-09-06T23:26:04Z",
"updated_at": "2021-01-22T03:50:37Z",
"pushed_at": "2021-03-10T12:52:04Z",
"pushed_at": "2021-03-13T01:48:43Z",
"git_url": "git://github.com/hub4j-test-org/github-api.git",
"ssh_url": "git@github.com:hub4j-test-org/github-api.git",
"clone_url": "https://github.com/hub4j-test-org/github-api.git",
@@ -310,25 +310,25 @@
},
"_links": {
"self": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/415"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/425"
},
"html": {
"href": "https://github.com/hub4j-test-org/github-api/pull/415"
"href": "https://github.com/hub4j-test-org/github-api/pull/425"
},
"issue": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/415"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/425"
},
"comments": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/415/comments"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/425/comments"
},
"review_comments": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/415/comments"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/425/comments"
},
"review_comment": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments{/number}"
},
"commits": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/415/commits"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/425/commits"
},
"statuses": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8"

View File

@@ -1,41 +1,41 @@
{
"url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/415",
"id": 589575449,
"node_id": "MDExOlB1bGxSZXF1ZXN0NTg5NTc1NDQ5",
"html_url": "https://github.com/hub4j-test-org/github-api/pull/415",
"diff_url": "https://github.com/hub4j-test-org/github-api/pull/415.diff",
"patch_url": "https://github.com/hub4j-test-org/github-api/pull/415.patch",
"issue_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/415",
"number": 415,
"url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/425",
"id": 592264291,
"node_id": "MDExOlB1bGxSZXF1ZXN0NTkyMjY0Mjkx",
"html_url": "https://github.com/hub4j-test-org/github-api/pull/425",
"diff_url": "https://github.com/hub4j-test-org/github-api/pull/425.diff",
"patch_url": "https://github.com/hub4j-test-org/github-api/pull/425.patch",
"issue_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/425",
"number": 425,
"state": "open",
"locked": false,
"title": "removeLabels",
"user": {
"login": "gsmet",
"id": 1279749,
"node_id": "MDQ6VXNlcjEyNzk3NDk=",
"avatar_url": "https://avatars.githubusercontent.com/u/1279749?v=4",
"login": "bitwiseman",
"id": 1958953,
"node_id": "MDQ6VXNlcjE5NTg5NTM=",
"avatar_url": "https://avatars.githubusercontent.com/u/1958953?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/gsmet",
"html_url": "https://github.com/gsmet",
"followers_url": "https://api.github.com/users/gsmet/followers",
"following_url": "https://api.github.com/users/gsmet/following{/other_user}",
"gists_url": "https://api.github.com/users/gsmet/gists{/gist_id}",
"starred_url": "https://api.github.com/users/gsmet/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gsmet/subscriptions",
"organizations_url": "https://api.github.com/users/gsmet/orgs",
"repos_url": "https://api.github.com/users/gsmet/repos",
"events_url": "https://api.github.com/users/gsmet/events{/privacy}",
"received_events_url": "https://api.github.com/users/gsmet/received_events",
"url": "https://api.github.com/users/bitwiseman",
"html_url": "https://github.com/bitwiseman",
"followers_url": "https://api.github.com/users/bitwiseman/followers",
"following_url": "https://api.github.com/users/bitwiseman/following{/other_user}",
"gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions",
"organizations_url": "https://api.github.com/users/bitwiseman/orgs",
"repos_url": "https://api.github.com/users/bitwiseman/repos",
"events_url": "https://api.github.com/users/bitwiseman/events{/privacy}",
"received_events_url": "https://api.github.com/users/bitwiseman/received_events",
"type": "User",
"site_admin": false
},
"body": "## test",
"created_at": "2021-03-10T12:52:04Z",
"updated_at": "2021-03-10T12:52:04Z",
"created_at": "2021-03-13T01:48:43Z",
"updated_at": "2021-03-13T01:48:44Z",
"closed_at": null,
"merged_at": null,
"merge_commit_sha": "d7f269fe7829c25459f2f2139381b72b60de27b8",
"merge_commit_sha": "dfdf6537669710e31b1dddcb178a06561d041427",
"assignee": null,
"assignees": [],
"requested_reviewers": [],
@@ -71,10 +71,10 @@
],
"milestone": null,
"draft": false,
"commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/415/commits",
"review_comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/415/comments",
"commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/425/commits",
"review_comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/425/comments",
"review_comment_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments{/number}",
"comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/415/comments",
"comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/425/comments",
"statuses_url": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8",
"head": {
"label": "hub4j-test-org:test/stable",
@@ -168,7 +168,7 @@
"deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments",
"created_at": "2019-09-06T23:26:04Z",
"updated_at": "2021-01-22T03:50:37Z",
"pushed_at": "2021-03-10T12:52:04Z",
"pushed_at": "2021-03-13T01:48:43Z",
"git_url": "git://github.com/hub4j-test-org/github-api.git",
"ssh_url": "git@github.com:hub4j-test-org/github-api.git",
"clone_url": "https://github.com/hub4j-test-org/github-api.git",
@@ -293,7 +293,7 @@
"deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments",
"created_at": "2019-09-06T23:26:04Z",
"updated_at": "2021-01-22T03:50:37Z",
"pushed_at": "2021-03-10T12:52:04Z",
"pushed_at": "2021-03-13T01:48:43Z",
"git_url": "git://github.com/hub4j-test-org/github-api.git",
"ssh_url": "git@github.com:hub4j-test-org/github-api.git",
"clone_url": "https://github.com/hub4j-test-org/github-api.git",
@@ -328,25 +328,25 @@
},
"_links": {
"self": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/415"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/425"
},
"html": {
"href": "https://github.com/hub4j-test-org/github-api/pull/415"
"href": "https://github.com/hub4j-test-org/github-api/pull/425"
},
"issue": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/415"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/425"
},
"comments": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/415/comments"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/issues/425/comments"
},
"review_comments": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/415/comments"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/425/comments"
},
"review_comment": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/comments{/number}"
},
"commits": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/415/commits"
"href": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/425/commits"
},
"statuses": {
"href": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/1f40fdf4acf1adb246c109c21a22f617e4bd1ca8"
@@ -358,7 +358,7 @@
"merged": false,
"mergeable": true,
"rebaseable": true,
"mergeable_state": "clean",
"mergeable_state": "unstable",
"merged_by": null,
"comments": 0,
"review_comments": 0,

View File

@@ -1,41 +1,41 @@
{
"login": "gsmet",
"id": 1279749,
"node_id": "MDQ6VXNlcjEyNzk3NDk=",
"avatar_url": "https://avatars.githubusercontent.com/u/1279749?v=4",
"login": "bitwiseman",
"id": 1958953,
"node_id": "MDQ6VXNlcjE5NTg5NTM=",
"avatar_url": "https://avatars.githubusercontent.com/u/1958953?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/gsmet",
"html_url": "https://github.com/gsmet",
"followers_url": "https://api.github.com/users/gsmet/followers",
"following_url": "https://api.github.com/users/gsmet/following{/other_user}",
"gists_url": "https://api.github.com/users/gsmet/gists{/gist_id}",
"starred_url": "https://api.github.com/users/gsmet/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/gsmet/subscriptions",
"organizations_url": "https://api.github.com/users/gsmet/orgs",
"repos_url": "https://api.github.com/users/gsmet/repos",
"events_url": "https://api.github.com/users/gsmet/events{/privacy}",
"received_events_url": "https://api.github.com/users/gsmet/received_events",
"url": "https://api.github.com/users/bitwiseman",
"html_url": "https://github.com/bitwiseman",
"followers_url": "https://api.github.com/users/bitwiseman/followers",
"following_url": "https://api.github.com/users/bitwiseman/following{/other_user}",
"gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}",
"starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions",
"organizations_url": "https://api.github.com/users/bitwiseman/orgs",
"repos_url": "https://api.github.com/users/bitwiseman/repos",
"events_url": "https://api.github.com/users/bitwiseman/events{/privacy}",
"received_events_url": "https://api.github.com/users/bitwiseman/received_events",
"type": "User",
"site_admin": false,
"name": "Guillaume Smet",
"company": "Red Hat",
"blog": "https://www.redhat.com/",
"location": "Lyon, France",
"email": "guillaume.smet@gmail.com",
"name": "Liam Newman",
"company": "Cloudbees, Inc.",
"blog": "",
"location": "Seattle, WA, USA",
"email": "bitwiseman@gmail.com",
"hireable": null,
"bio": "Happy camper at Red Hat, working on Quarkus and the Hibernate portfolio.",
"twitter_username": "gsmet_",
"public_repos": 98,
"public_gists": 14,
"followers": 126,
"following": 3,
"created_at": "2011-12-22T11:03:22Z",
"updated_at": "2021-03-09T14:33:13Z",
"private_gists": 14,
"total_private_repos": 5,
"owned_private_repos": 2,
"disk_usage": 68251,
"collaborators": 1,
"bio": null,
"twitter_username": "bitwiseman",
"public_repos": 204,
"public_gists": 8,
"followers": 181,
"following": 11,
"created_at": "2012-07-11T20:38:33Z",
"updated_at": "2021-03-13T00:53:04Z",
"private_gists": 19,
"total_private_repos": 19,
"owned_private_repos": 0,
"disk_usage": 33700,
"collaborators": 0,
"two_factor_authentication": true,
"plan": {
"name": "free",

View File

@@ -1,5 +1,5 @@
{
"id": "b4e4fbef-885b-4f1b-b442-352df9da400b",
"id": "3ce2389d-d142-4c45-ab97-eab643694244",
"name": "orgs_hub4j-test-org",
"request": {
"url": "/orgs/hub4j-test-org",
@@ -15,32 +15,32 @@
"bodyFileName": "orgs_hub4j-test-org-2.json",
"headers": {
"Server": "GitHub.com",
"Date": "Wed, 10 Mar 2021 12:52:03 GMT",
"Date": "Sat, 13 Mar 2021 01:48:43 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "W/\"d6f1aee416a47d2dfaf1035d78565b329beaee365900d5a707e780abcb30f9ce\"",
"ETag": "W/\"8d03272a59bcf3983cb9122b62f919c03829bc402e1306b087a70015b94507ea\"",
"Last-Modified": "Thu, 04 Jun 2020 05:56:10 GMT",
"X-OAuth-Scopes": "repo, user",
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
"X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4468",
"X-RateLimit-Reset": "1615382444",
"X-RateLimit-Used": "532",
"X-RateLimit-Remaining": "4899",
"X-RateLimit-Reset": "1615600351",
"X-RateLimit-Used": "101",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"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": "B702:708A:68E7DD6:6B42A40:6048C0F3"
"X-GitHub-Request-Id": "C5EC:7528:543706:59CCFD:604C19FB"
}
},
"uuid": "b4e4fbef-885b-4f1b-b442-352df9da400b",
"uuid": "3ce2389d-d142-4c45-ab97-eab643694244",
"persistent": true,
"insertionIndex": 2
}

View File

@@ -1,5 +1,5 @@
{
"id": "79f43c2d-b9fb-4397-a9f7-da5bd2b29479",
"id": "5bea3e49-2268-4236-97d1-ea173040d7db",
"name": "repos_hub4j-test-org_github-api",
"request": {
"url": "/repos/hub4j-test-org/github-api",
@@ -15,32 +15,32 @@
"bodyFileName": "repos_hub4j-test-org_github-api-10.json",
"headers": {
"Server": "GitHub.com",
"Date": "Wed, 10 Mar 2021 12:52:06 GMT",
"Date": "Sat, 13 Mar 2021 01:48:45 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "W/\"016041b797876fdb9f4e18b7a206f9c4b50efb2fc7eaac5a7d13ff6a1c6c2607\"",
"ETag": "W/\"5b5c2af161f09bfe2b6c58170c7a5733df09789eac630b72b07c03226599bbed\"",
"Last-Modified": "Fri, 22 Jan 2021 03:50:37 GMT",
"X-OAuth-Scopes": "repo, user",
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
"X-Accepted-OAuth-Scopes": "repo",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4460",
"X-RateLimit-Reset": "1615382444",
"X-RateLimit-Used": "540",
"X-RateLimit-Remaining": "4891",
"X-RateLimit-Reset": "1615600351",
"X-RateLimit-Used": "109",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"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": "B702:708A:68E844E:6B430CD:6048C0F6"
"X-GitHub-Request-Id": "C5EC:7528:54387B:59CE8B:604C19FD"
}
},
"uuid": "79f43c2d-b9fb-4397-a9f7-da5bd2b29479",
"uuid": "5bea3e49-2268-4236-97d1-ea173040d7db",
"persistent": true,
"scenarioName": "scenario-1-repos-hub4j-test-org-github-api",
"requiredScenarioState": "scenario-1-repos-hub4j-test-org-github-api-3",

View File

@@ -1,5 +1,5 @@
{
"id": "77295f70-74b7-4b1c-bd6c-f48adc960f68",
"id": "4435a524-4fd7-4d46-948b-389a3dfe22c8",
"name": "repos_hub4j-test-org_github-api",
"request": {
"url": "/repos/hub4j-test-org/github-api",
@@ -15,32 +15,32 @@
"bodyFileName": "repos_hub4j-test-org_github-api-3.json",
"headers": {
"Server": "GitHub.com",
"Date": "Wed, 10 Mar 2021 12:52:03 GMT",
"Date": "Sat, 13 Mar 2021 01:48:43 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "W/\"ed26d587aba13371e632bce68ccdd87897a565416658f1aa8aae0ac0f0665479\"",
"ETag": "W/\"d8b9096c0e44548392bf42177ea1535043ca8d4aa4ba05401299d3219da7fd49\"",
"Last-Modified": "Fri, 22 Jan 2021 03:50:37 GMT",
"X-OAuth-Scopes": "repo, user",
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
"X-Accepted-OAuth-Scopes": "repo",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4467",
"X-RateLimit-Reset": "1615382444",
"X-RateLimit-Used": "533",
"X-RateLimit-Remaining": "4898",
"X-RateLimit-Reset": "1615600351",
"X-RateLimit-Used": "102",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"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": "B702:708A:68E7E49:6B42AAA:6048C0F3"
"X-GitHub-Request-Id": "C5EC:7528:54371C:59CD11:604C19FB"
}
},
"uuid": "77295f70-74b7-4b1c-bd6c-f48adc960f68",
"uuid": "4435a524-4fd7-4d46-948b-389a3dfe22c8",
"persistent": true,
"scenarioName": "scenario-1-repos-hub4j-test-org-github-api",
"requiredScenarioState": "Started",

View File

@@ -1,5 +1,5 @@
{
"id": "0cd3dbc7-962b-4483-aeec-ea037b7a49a2",
"id": "82b829dd-2632-4d74-b721-46352ee24e11",
"name": "repos_hub4j-test-org_github-api",
"request": {
"url": "/repos/hub4j-test-org/github-api",
@@ -15,32 +15,32 @@
"bodyFileName": "repos_hub4j-test-org_github-api-6.json",
"headers": {
"Server": "GitHub.com",
"Date": "Wed, 10 Mar 2021 12:52:05 GMT",
"Date": "Sat, 13 Mar 2021 01:48:44 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "W/\"016041b797876fdb9f4e18b7a206f9c4b50efb2fc7eaac5a7d13ff6a1c6c2607\"",
"ETag": "W/\"5b5c2af161f09bfe2b6c58170c7a5733df09789eac630b72b07c03226599bbed\"",
"Last-Modified": "Fri, 22 Jan 2021 03:50:37 GMT",
"X-OAuth-Scopes": "repo, user",
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
"X-Accepted-OAuth-Scopes": "repo",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4464",
"X-RateLimit-Reset": "1615382444",
"X-RateLimit-Used": "536",
"X-RateLimit-Remaining": "4895",
"X-RateLimit-Reset": "1615600351",
"X-RateLimit-Used": "105",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"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": "B702:708A:68E817A:6B42DE3:6048C0F5"
"X-GitHub-Request-Id": "C5EC:7528:5437DF:59CDE4:604C19FC"
}
},
"uuid": "0cd3dbc7-962b-4483-aeec-ea037b7a49a2",
"uuid": "82b829dd-2632-4d74-b721-46352ee24e11",
"persistent": true,
"scenarioName": "scenario-1-repos-hub4j-test-org-github-api",
"requiredScenarioState": "scenario-1-repos-hub4j-test-org-github-api-2",

View File

@@ -1,8 +1,8 @@
{
"id": "31ee545b-d35d-4533-99c2-6a1f8b74eef9",
"name": "repos_hub4j-test-org_github-api_issues_415",
"id": "a9ff34df-2cb5-4986-9669-7c2c8c914a88",
"name": "repos_hub4j-test-org_github-api_issues_425",
"request": {
"url": "/repos/hub4j-test-org/github-api/issues/415",
"url": "/repos/hub4j-test-org/github-api/issues/425",
"method": "PATCH",
"headers": {
"Accept": {
@@ -19,34 +19,34 @@
},
"response": {
"status": 200,
"bodyFileName": "repos_hub4j-test-org_github-api_issues_415-5.json",
"bodyFileName": "repos_hub4j-test-org_github-api_issues_425-5.json",
"headers": {
"Server": "GitHub.com",
"Date": "Wed, 10 Mar 2021 12:52:05 GMT",
"Date": "Sat, 13 Mar 2021 01:48:44 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "W/\"1a44e30faa8894fd3dea0182aa0b45e99acb19779a3a7f086c9013b5ed1224ba\"",
"X-OAuth-Scopes": "repo, user",
"ETag": "W/\"eeaa05be2d256a89cfda9686c0e354cb6b400ebce40c9be564a3945055f1c806\"",
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
"X-Accepted-OAuth-Scopes": "",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4465",
"X-RateLimit-Reset": "1615382444",
"X-RateLimit-Used": "535",
"X-RateLimit-Remaining": "4896",
"X-RateLimit-Reset": "1615600351",
"X-RateLimit-Used": "104",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"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": "B702:708A:68E808D:6B42CEC:6048C0F4"
"X-GitHub-Request-Id": "C5EC:7528:543794:59CD96:604C19FC"
}
},
"uuid": "31ee545b-d35d-4533-99c2-6a1f8b74eef9",
"uuid": "a9ff34df-2cb5-4986-9669-7c2c8c914a88",
"persistent": true,
"insertionIndex": 5
}

View File

@@ -1,8 +1,8 @@
{
"id": "3690bbaa-b4e9-4f6e-aaba-2ac64d3a96bf",
"name": "repos_hub4j-test-org_github-api_issues_415_labels_removelabels_label_name_2",
"id": "a74f2000-0338-43ea-8ceb-0a02e3843fea",
"name": "repos_hub4j-test-org_github-api_issues_425_labels_removelabels_label_name_2",
"request": {
"url": "/repos/hub4j-test-org/github-api/issues/415/labels/removeLabels_label_name_2",
"url": "/repos/hub4j-test-org/github-api/issues/425/labels/removeLabels_label_name_2",
"method": "DELETE",
"headers": {
"Accept": {
@@ -12,34 +12,34 @@
},
"response": {
"status": 200,
"bodyFileName": "repos_hub4j-test-org_github-api_issues_415_labels_removelabels_label_name_2-8.json",
"bodyFileName": "repos_hub4j-test-org_github-api_issues_425_labels_removelabels_label_name_2-8.json",
"headers": {
"Server": "GitHub.com",
"Date": "Wed, 10 Mar 2021 12:52:06 GMT",
"Date": "Sat, 13 Mar 2021 01:48:45 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "W/\"b45ae12269561a34c2c14d38196c42c0e187d95f2f02dc261a1d62d10664d0f8\"",
"X-OAuth-Scopes": "repo, user",
"ETag": "W/\"6c3013b8a1b13185049ef20643388988dd1aaf2d2afe2dbb46d74d63ee1288b3\"",
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
"X-Accepted-OAuth-Scopes": "",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4462",
"X-RateLimit-Reset": "1615382444",
"X-RateLimit-Used": "538",
"X-RateLimit-Remaining": "4893",
"X-RateLimit-Reset": "1615600351",
"X-RateLimit-Used": "107",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"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": "B702:708A:68E8278:6B42EE5:6048C0F5"
"X-GitHub-Request-Id": "C5EC:7528:543823:59CE2B:604C19FD"
}
},
"uuid": "3690bbaa-b4e9-4f6e-aaba-2ac64d3a96bf",
"uuid": "a74f2000-0338-43ea-8ceb-0a02e3843fea",
"persistent": true,
"insertionIndex": 8
}

View File

@@ -0,0 +1,43 @@
{
"id": "f77bce1f-1a8c-415d-a3a5-d0002f6ad610",
"name": "repos_hub4j-test-org_github-api_issues_425_labels_removelabels_label_name_3",
"request": {
"url": "/repos/hub4j-test-org/github-api/issues/425/labels/removeLabels_label_name_3",
"method": "DELETE",
"headers": {
"Accept": {
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
}
}
},
"response": {
"status": 404,
"body": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://docs.github.com/rest/reference/issues#remove-a-label-from-an-issue\"}",
"headers": {
"Server": "GitHub.com",
"Date": "Sat, 13 Mar 2021 01:48:46 GMT",
"Content-Type": "application/json; charset=utf-8",
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
"X-Accepted-OAuth-Scopes": "",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4889",
"X-RateLimit-Reset": "1615600351",
"X-RateLimit-Used": "111",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"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": "C5EC:7528:5438C3:59CEDB:604C19FE"
}
},
"uuid": "f77bce1f-1a8c-415d-a3a5-d0002f6ad610",
"persistent": true,
"scenarioName": "scenario-3-repos-hub4j-test-org-github-api-issues-425-labels-removeLabels_label_name_3",
"requiredScenarioState": "scenario-3-repos-hub4j-test-org-github-api-issues-425-labels-removeLabels_label_name_3-2",
"newScenarioState": "scenario-3-repos-hub4j-test-org-github-api-issues-425-labels-removeLabels_label_name_3-3",
"insertionIndex": 12
}

View File

@@ -0,0 +1,42 @@
{
"id": "1a450956-c535-4b7b-b1a5-db01c05b21fc",
"name": "repos_hub4j-test-org_github-api_issues_425_labels_removelabels_label_name_3",
"request": {
"url": "/repos/hub4j-test-org/github-api/issues/425/labels/removeLabels_label_name_3",
"method": "DELETE",
"headers": {
"Accept": {
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
}
}
},
"response": {
"status": 404,
"body": "{\"message\":\"Label does not exist\",\"documentation_url\":\"https://docs.github.com/rest/reference/issues#remove-a-label-from-an-issue\"}",
"headers": {
"Server": "GitHub.com",
"Date": "Sat, 13 Mar 2021 01:48:46 GMT",
"Content-Type": "application/json; charset=utf-8",
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
"X-Accepted-OAuth-Scopes": "",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4888",
"X-RateLimit-Reset": "1615600351",
"X-RateLimit-Used": "112",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"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": "C5EC:7528:5438D7:59CEEF:604C19FE"
}
},
"uuid": "1a450956-c535-4b7b-b1a5-db01c05b21fc",
"persistent": true,
"scenarioName": "scenario-3-repos-hub4j-test-org-github-api-issues-425-labels-removeLabels_label_name_3",
"requiredScenarioState": "scenario-3-repos-hub4j-test-org-github-api-issues-425-labels-removeLabels_label_name_3-3",
"insertionIndex": 13
}

View File

@@ -1,8 +1,8 @@
{
"id": "8d754268-5e5b-48bd-83c9-da20207a6689",
"name": "repos_hub4j-test-org_github-api_issues_415_labels_removelabels_label_name_3",
"id": "012ac6d2-86f8-44ca-8b90-0da759aff1e3",
"name": "repos_hub4j-test-org_github-api_issues_425_labels_removelabels_label_name_3",
"request": {
"url": "/repos/hub4j-test-org/github-api/issues/415/labels/removeLabels_label_name_3",
"url": "/repos/hub4j-test-org/github-api/issues/425/labels/removeLabels_label_name_3",
"method": "DELETE",
"headers": {
"Accept": {
@@ -15,31 +15,34 @@
"body": "[{\"id\":2806271705,\"node_id\":\"MDU6TGFiZWwyODA2MjcxNzA1\",\"url\":\"https://api.github.com/repos/hub4j-test-org/github-api/labels/removeLabels_label_name_1\",\"name\":\"removeLabels_label_name_1\",\"color\":\"ededed\",\"default\":false,\"description\":null}]",
"headers": {
"Server": "GitHub.com",
"Date": "Wed, 10 Mar 2021 12:52:06 GMT",
"Date": "Sat, 13 Mar 2021 01:48:45 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "W/\"69a9e689ce7890f70e9e6f27372f16cb4bec369f672e3a104dbebf85a0f44cbf\"",
"X-OAuth-Scopes": "repo, user",
"ETag": "W/\"8d1cf7481d1cefda84f98b72dd1c61789d18328e0f371000c4bd4f40b432e3d9\"",
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
"X-Accepted-OAuth-Scopes": "",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4461",
"X-RateLimit-Reset": "1615382444",
"X-RateLimit-Used": "539",
"X-RateLimit-Remaining": "4892",
"X-RateLimit-Reset": "1615600351",
"X-RateLimit-Used": "108",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"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": "B702:708A:68E838E:6B43007:6048C0F6"
"X-GitHub-Request-Id": "C5EC:7528:543852:59CE5E:604C19FD"
}
},
"uuid": "8d754268-5e5b-48bd-83c9-da20207a6689",
"uuid": "012ac6d2-86f8-44ca-8b90-0da759aff1e3",
"persistent": true,
"scenarioName": "scenario-3-repos-hub4j-test-org-github-api-issues-425-labels-removeLabels_label_name_3",
"requiredScenarioState": "Started",
"newScenarioState": "scenario-3-repos-hub4j-test-org-github-api-issues-425-labels-removeLabels_label_name_3-2",
"insertionIndex": 9
}

View File

@@ -1,5 +1,5 @@
{
"id": "6ca689ef-02cc-4f09-9d81-74361520468e",
"id": "8dc10c85-a109-4d62-8868-0c5381feeafe",
"name": "repos_hub4j-test-org_github-api_pulls",
"request": {
"url": "/repos/hub4j-test-org/github-api/pulls",
@@ -22,32 +22,32 @@
"bodyFileName": "repos_hub4j-test-org_github-api_pulls-4.json",
"headers": {
"Server": "GitHub.com",
"Date": "Wed, 10 Mar 2021 12:52:04 GMT",
"Date": "Sat, 13 Mar 2021 01:48:44 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "\"109325f9a437a127c52f25906f4fadcef01cebe7594e90ef96e70c4a4e9444a6\"",
"X-OAuth-Scopes": "repo, user",
"ETag": "\"aa4372631c90c3abb24c153b73d81fbad6d73fd445b9a017f473d83141a31c5c\"",
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
"X-Accepted-OAuth-Scopes": "",
"X-GitHub-Media-Type": "github.v3; param=shadow-cat-preview; format=json",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4466",
"X-RateLimit-Reset": "1615382444",
"X-RateLimit-Used": "534",
"X-RateLimit-Remaining": "4897",
"X-RateLimit-Reset": "1615600351",
"X-RateLimit-Used": "103",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"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": "B702:708A:68E7EE0:6B42B39:6048C0F3",
"Location": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/415"
"X-GitHub-Request-Id": "C5EC:7528:543736:59CD2E:604C19FB",
"Location": "https://api.github.com/repos/hub4j-test-org/github-api/pulls/425"
}
},
"uuid": "6ca689ef-02cc-4f09-9d81-74361520468e",
"uuid": "8dc10c85-a109-4d62-8868-0c5381feeafe",
"persistent": true,
"insertionIndex": 4
}

View File

@@ -1,8 +1,8 @@
{
"id": "0144e045-09a3-45ca-b167-cfc760ad643d",
"name": "repos_hub4j-test-org_github-api_pulls_415",
"id": "a6a60436-759e-4c02-b64e-4a05284ede5e",
"name": "repos_hub4j-test-org_github-api_pulls_425",
"request": {
"url": "/repos/hub4j-test-org/github-api/pulls/415",
"url": "/repos/hub4j-test-org/github-api/pulls/425",
"method": "GET",
"headers": {
"Accept": {
@@ -12,37 +12,37 @@
},
"response": {
"status": 200,
"bodyFileName": "repos_hub4j-test-org_github-api_pulls_415-11.json",
"bodyFileName": "repos_hub4j-test-org_github-api_pulls_425-11.json",
"headers": {
"Server": "GitHub.com",
"Date": "Wed, 10 Mar 2021 12:52:07 GMT",
"Date": "Sat, 13 Mar 2021 01:48:46 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "W/\"6eb1347b7a8e02bcf3a6a730fda2ded80949ca4ddb7162608386b38d87f26541\"",
"Last-Modified": "Wed, 10 Mar 2021 12:52:06 GMT",
"X-OAuth-Scopes": "repo, user",
"ETag": "W/\"94c0dee8b8e847e586361cd23d0f32c872ee4dc2617e32c68cf932b46c568a39\"",
"Last-Modified": "Sat, 13 Mar 2021 01:48:45 GMT",
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
"X-Accepted-OAuth-Scopes": "",
"X-GitHub-Media-Type": "github.v3; param=shadow-cat-preview; format=json",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4459",
"X-RateLimit-Reset": "1615382444",
"X-RateLimit-Used": "541",
"X-RateLimit-Remaining": "4890",
"X-RateLimit-Reset": "1615600351",
"X-RateLimit-Used": "110",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"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": "B702:708A:68E84D2:6B4314D:6048C0F6"
"X-GitHub-Request-Id": "C5EC:7528:543896:59CEA9:604C19FD"
}
},
"uuid": "0144e045-09a3-45ca-b167-cfc760ad643d",
"uuid": "a6a60436-759e-4c02-b64e-4a05284ede5e",
"persistent": true,
"scenarioName": "scenario-2-repos-hub4j-test-org-github-api-pulls-415",
"requiredScenarioState": "scenario-2-repos-hub4j-test-org-github-api-pulls-415-2",
"scenarioName": "scenario-2-repos-hub4j-test-org-github-api-pulls-425",
"requiredScenarioState": "scenario-2-repos-hub4j-test-org-github-api-pulls-425-2",
"insertionIndex": 11
}

View File

@@ -1,8 +1,8 @@
{
"id": "aa5db1cf-a9a8-4e47-84a9-519191032758",
"name": "repos_hub4j-test-org_github-api_pulls_415",
"id": "d0dd2a7a-0ba8-4db9-80cb-5d43b1f54325",
"name": "repos_hub4j-test-org_github-api_pulls_425",
"request": {
"url": "/repos/hub4j-test-org/github-api/pulls/415",
"url": "/repos/hub4j-test-org/github-api/pulls/425",
"method": "GET",
"headers": {
"Accept": {
@@ -12,38 +12,38 @@
},
"response": {
"status": 200,
"bodyFileName": "repos_hub4j-test-org_github-api_pulls_415-7.json",
"bodyFileName": "repos_hub4j-test-org_github-api_pulls_425-7.json",
"headers": {
"Server": "GitHub.com",
"Date": "Wed, 10 Mar 2021 12:52:05 GMT",
"Date": "Sat, 13 Mar 2021 01:48:44 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "W/\"6f95bbb9804eb1f0c86dc31193af9385a7070baf6286e6794cff6124356324df\"",
"Last-Modified": "Wed, 10 Mar 2021 12:52:04 GMT",
"X-OAuth-Scopes": "repo, user",
"ETag": "W/\"d1585315df40d30496a0b4a272609d63c768fbedb70804a7bdbacb63c68f94a8\"",
"Last-Modified": "Sat, 13 Mar 2021 01:48:44 GMT",
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
"X-Accepted-OAuth-Scopes": "",
"X-GitHub-Media-Type": "github.v3; param=shadow-cat-preview; format=json",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4463",
"X-RateLimit-Reset": "1615382444",
"X-RateLimit-Used": "537",
"X-RateLimit-Remaining": "4894",
"X-RateLimit-Reset": "1615600351",
"X-RateLimit-Used": "106",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"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": "B702:708A:68E81DF:6B42E4A:6048C0F5"
"X-GitHub-Request-Id": "C5EC:7528:5437FD:59CE00:604C19FC"
}
},
"uuid": "aa5db1cf-a9a8-4e47-84a9-519191032758",
"uuid": "d0dd2a7a-0ba8-4db9-80cb-5d43b1f54325",
"persistent": true,
"scenarioName": "scenario-2-repos-hub4j-test-org-github-api-pulls-415",
"scenarioName": "scenario-2-repos-hub4j-test-org-github-api-pulls-425",
"requiredScenarioState": "Started",
"newScenarioState": "scenario-2-repos-hub4j-test-org-github-api-pulls-415-2",
"newScenarioState": "scenario-2-repos-hub4j-test-org-github-api-pulls-425-2",
"insertionIndex": 7
}

View File

@@ -1,5 +1,5 @@
{
"id": "e8c0415f-067a-4de7-a62e-355f66ae9563",
"id": "98f3b23c-8b10-486f-83cd-7d1b4c2622ad",
"name": "user",
"request": {
"url": "/user",
@@ -15,32 +15,32 @@
"bodyFileName": "user-1.json",
"headers": {
"Server": "GitHub.com",
"Date": "Wed, 10 Mar 2021 12:52:02 GMT",
"Date": "Sat, 13 Mar 2021 01:48:42 GMT",
"Content-Type": "application/json; charset=utf-8",
"Cache-Control": "private, max-age=60, s-maxage=60",
"Vary": [
"Accept, Authorization, Cookie, X-GitHub-OTP",
"Accept-Encoding, Accept, X-Requested-With"
],
"ETag": "W/\"ae9f81b98579088c92fa7db16f009a42ddbc9ba377a0fd2f76ebe38bcee68a2f\"",
"Last-Modified": "Tue, 09 Mar 2021 14:33:13 GMT",
"X-OAuth-Scopes": "repo, user",
"ETag": "W/\"2822a9e2f360a7908be6027a75d37eebff6e63fc94c67aceefb1e25113b3240e\"",
"Last-Modified": "Sat, 13 Mar 2021 00:53:04 GMT",
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
"X-Accepted-OAuth-Scopes": "",
"X-GitHub-Media-Type": "unknown, github.v3",
"X-RateLimit-Limit": "5000",
"X-RateLimit-Remaining": "4473",
"X-RateLimit-Reset": "1615382444",
"X-RateLimit-Used": "527",
"X-RateLimit-Remaining": "4904",
"X-RateLimit-Reset": "1615600351",
"X-RateLimit-Used": "96",
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
"X-Frame-Options": "deny",
"X-Content-Type-Options": "nosniff",
"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": "B702:708A:68E7B96:6B427ED:6048C0F2"
"X-GitHub-Request-Id": "C5EC:7528:543673:59CC65:604C19FA"
}
},
"uuid": "e8c0415f-067a-4de7-a62e-355f66ae9563",
"uuid": "98f3b23c-8b10-486f-83cd-7d1b4c2622ad",
"persistent": true,
"insertionIndex": 1
}