From 2aa4022e2c46c5ff9d360ec99566830bcc73e24b Mon Sep 17 00:00:00 2001 From: Martin van Zijl Date: Wed, 9 Oct 2019 14:59:08 +1300 Subject: [PATCH] Updated per review. - Created separate class for GHIssueEvent instead of nested classes. - Renamed test class accordingly. Other fixes: - Changed id type to long. - Updated test cases. - Added toString() method. --- src/main/java/org/kohsuke/github/GHIssue.java | 68 +- .../java/org/kohsuke/github/GHIssueEvent.java | 81 + .../java/org/kohsuke/github/GHRepository.java | 75 +- .../org/kohsuke/github/GHIssueEventTest.java | 50 + .../org/kohsuke/github/IssueEventsTest.java | 60 - ...-711525e9-944c-436e-9fb9-a6d2cb59e3bb.json | 41 + ...-887faa6b-f4e3-4ef0-b200-3692d68f42cd.json | 330 ++ ...-945110dd-fd1f-4592-ba04-6675d0715699.json | 70 + ...-6c9027a5-f385-42c0-9401-0c592592a5a4.json | 31 + .../orgs_github-api-test-org-1-711525.json | 41 + ...thub-api-test-org_github-api-2-887faa.json | 41 + ...test-org_github-api_issues_1-3-945110.json | 41 + ...g_github-api_issues_1_events-4-6c9027.json | 40 + ...-271bc78a-da92-4b95-978e-696a960ae591.json | 41 + ...-ed242e3b-40a3-40ac-bf20-e3b9f26f2808.json | 330 ++ ...-55f59417-2e95-45c8-8ae0-7920e8f45eec.json | 2598 ++++++++++++++++ ...-0dfa7d8f-eba8-4155-8604-ee86d335c3c0.json | 2372 +++++++++++++++ ...-11f3c150-f073-4465-8fe4-8641211cc487.json | 2514 ++++++++++++++++ ...-13dd42c1-51d3-40b5-b921-f99fb4be769a.json | 2514 ++++++++++++++++ ...-28a5a658-444b-46e2-8e6b-f5abcd65269a.json | 2536 ++++++++++++++++ ...-28bf30e8-7f42-4162-b82e-32ceb6a08384.json | 2634 ++++++++++++++++ ...-50930d32-3438-48b2-be82-99d03bd48eab.json | 2372 +++++++++++++++ ...-731175aa-fd44-4609-8ad4-202bf07f1092.json | 2634 ++++++++++++++++ ...-8c3b4d1c-5327-425f-8ee0-845cf8d3f9ca.json | 1961 ++++++++++++ ...-91934a90-1c2f-4b03-b48f-8d919ca35a00.json | 2514 ++++++++++++++++ ...-a808d770-8f9c-44ae-bcbe-ebd3311bcce8.json | 2514 ++++++++++++++++ ...-b931f4bd-a59c-49c0-ba7f-8a99a948a343.json | 2656 +++++++++++++++++ ...-ba4c9486-0956-4ea0-b5bf-f9189cf60bf9.json | 2372 +++++++++++++++ ...-df3c06e8-3b9a-46e5-bf28-43f6632eda7c.json | 2558 ++++++++++++++++ .../orgs_github-api-test-org-1-271bc7.json | 41 + ...thub-api-test-org_github-api-2-ed242e.json | 41 + ...org_github-api_issues_events-3-55f594.json | 41 + ...ies_206888201_issues_events-10-ba4c94.json | 41 + ...ies_206888201_issues_events-11-11f3c1.json | 41 + ...ies_206888201_issues_events-12-28bf30.json | 41 + ...ies_206888201_issues_events-13-b931f4.json | 41 + ...ies_206888201_issues_events-14-df3c06.json | 41 + ...ies_206888201_issues_events-15-50930d.json | 41 + ...ies_206888201_issues_events-16-8c3b4d.json | 41 + ...ries_206888201_issues_events-4-a808d7.json | 41 + ...ries_206888201_issues_events-5-0dfa7d.json | 41 + ...ries_206888201_issues_events-6-91934a.json | 41 + ...ries_206888201_issues_events-7-13dd42.json | 41 + ...ries_206888201_issues_events-8-731175.json | 41 + ...ries_206888201_issues_events-9-28a5a6.json | 41 + ...-1be45f74-f7e1-46ab-a143-7277403c12fe.json | 41 + ...-e79c57ab-6e11-40b0-b4ae-f4be4e7e86e0.json | 330 ++ ...-89dbe512-7237-49e6-842e-8f9ae0902d7c.json | 79 + .../orgs_github-api-test-org-1-1be45f.json | 41 + ...thub-api-test-org_github-api-2-e79c57.json | 41 + ...api_issues_events_2615868520-3-89dbe5.json | 41 + 51 files changed, 37130 insertions(+), 188 deletions(-) create mode 100644 src/main/java/org/kohsuke/github/GHIssueEvent.java create mode 100644 src/test/java/org/kohsuke/github/GHIssueEventTest.java delete mode 100644 src/test/java/org/kohsuke/github/IssueEventsTest.java create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/orgs_github-api-test-org-711525e9-944c-436e-9fb9-a6d2cb59e3bb.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api-887faa6b-f4e3-4ef0-b200-3692d68f42cd.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_1-945110dd-fd1f-4592-ba04-6675d0715699.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_1_events-6c9027a5-f385-42c0-9401-0c592592a5a4.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/orgs_github-api-test-org-1-711525.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api-2-887faa.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_1-3-945110.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_1_events-4-6c9027.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/orgs_github-api-test-org-271bc78a-da92-4b95-978e-696a960ae591.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repos_github-api-test-org_github-api-ed242e3b-40a3-40ac-bf20-e3b9f26f2808.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repos_github-api-test-org_github-api_issues_events-55f59417-2e95-45c8-8ae0-7920e8f45eec.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-0dfa7d8f-eba8-4155-8604-ee86d335c3c0.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-11f3c150-f073-4465-8fe4-8641211cc487.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-13dd42c1-51d3-40b5-b921-f99fb4be769a.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-28a5a658-444b-46e2-8e6b-f5abcd65269a.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-28bf30e8-7f42-4162-b82e-32ceb6a08384.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-50930d32-3438-48b2-be82-99d03bd48eab.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-731175aa-fd44-4609-8ad4-202bf07f1092.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-8c3b4d1c-5327-425f-8ee0-845cf8d3f9ca.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-91934a90-1c2f-4b03-b48f-8d919ca35a00.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-a808d770-8f9c-44ae-bcbe-ebd3311bcce8.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-b931f4bd-a59c-49c0-ba7f-8a99a948a343.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-ba4c9486-0956-4ea0-b5bf-f9189cf60bf9.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-df3c06e8-3b9a-46e5-bf28-43f6632eda7c.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/orgs_github-api-test-org-1-271bc7.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repos_github-api-test-org_github-api-2-ed242e.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repos_github-api-test-org_github-api_issues_events-3-55f594.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-10-ba4c94.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-11-11f3c1.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-12-28bf30.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-13-b931f4.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-14-df3c06.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-15-50930d.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-16-8c3b4d.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-4-a808d7.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-5-0dfa7d.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-6-91934a.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-7-13dd42.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-8-731175.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-9-28a5a6.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/__files/orgs_github-api-test-org-1be45f74-f7e1-46ab-a143-7277403c12fe.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/__files/repos_github-api-test-org_github-api-e79c57ab-6e11-40b0-b4ae-f4be4e7e86e0.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/__files/repos_github-api-test-org_github-api_issues_events_2615868520-89dbe512-7237-49e6-842e-8f9ae0902d7c.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/mappings/orgs_github-api-test-org-1-1be45f.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/mappings/repos_github-api-test-org_github-api-2-e79c57.json create mode 100644 src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/mappings/repos_github-api-test-org_github-api_issues_events_2615868520-3-89dbe5.json diff --git a/src/main/java/org/kohsuke/github/GHIssue.java b/src/main/java/org/kohsuke/github/GHIssue.java index 41f1102f6..d7525ff39 100644 --- a/src/main/java/org/kohsuke/github/GHIssue.java +++ b/src/main/java/org/kohsuke/github/GHIssue.java @@ -431,72 +431,18 @@ public class GHIssue extends GHObject implements Reactable{ } } - public static class IssueEventInfo { - private GitHub root; - - private int id; - private String node_id; - private String url; - private GHUser actor; - private String event; - private String commit_id; - private String commit_url; - private String created_at; - - public int getId() { - return id; - } - - public String getNodeId() { - return node_id; - } - - public String getUrl() { - return url; - } - - public GHUser getActor() { - return actor; - } - - public String getEvent() { - return event; - } - - public String getCommitId() { - return commit_id; - } - - public String getCommitUrl() { - return commit_url; - } - - public Date getCreatedAt() { - return GitHub.parseDate(created_at); - } - - public IssueEventInfo wrapUp(GitHub root) { - this.root = root; - return this; - } - - public GitHub getRoot() { - return root; - } - } - /** * Lists events for this issue. * See https://developer.github.com/v3/issues/events/ */ - public PagedIterable listEvents() throws IOException { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(owner.getApiTailUrl(String.format("/issues/%s/events", number)), IssueEventInfo[].class, pageSize)) { + public PagedIterable listEvents() throws IOException { + return new PagedIterable() { + public PagedIterator _iterator(int pageSize) { + return new PagedIterator(root.retrieve().asIterator(owner.getApiTailUrl(String.format("/issues/%s/events", number)), GHIssueEvent[].class, pageSize)) { @Override - protected void wrapUp(IssueEventInfo[] page) { - for (IssueEventInfo c : page) - c.wrapUp(root); + protected void wrapUp(GHIssueEvent[] page) { + for (GHIssueEvent c : page) + c.wrapUp(GHIssue.this); } }; } diff --git a/src/main/java/org/kohsuke/github/GHIssueEvent.java b/src/main/java/org/kohsuke/github/GHIssueEvent.java new file mode 100644 index 000000000..792e7b350 --- /dev/null +++ b/src/main/java/org/kohsuke/github/GHIssueEvent.java @@ -0,0 +1,81 @@ +package org.kohsuke.github; + +import java.util.Date; + +/** + * @author Martin van Zijl + */ +public class GHIssueEvent { + private GitHub root; + + private long id; + private String node_id; + private String url; + private GHUser actor; + private String event; + private String commit_id; + private String commit_url; + private String created_at; + + private GHIssue issue; + + public long getId() { + return id; + } + + public String getNodeId() { + return node_id; + } + + public String getUrl() { + return url; + } + + public GHUser getActor() { + return actor; + } + + public String getEvent() { + return event; + } + + public String getCommitId() { + return commit_id; + } + + public String getCommitUrl() { + return commit_url; + } + + public Date getCreatedAt() { + return GitHub.parseDate(created_at); + } + + public GitHub getRoot() { + return root; + } + + public GHIssue getIssue() { + return issue; + } + + public GHIssueEvent wrapUp(GitHub root) { + this.root = root; + return this; + } + + public GHIssueEvent wrapUp(GHIssue parent) { + this.issue = parent; + this.root = parent.root; + return this; + } + + @Override + public String toString() { + return String.format("Issue %d was %s by %s on %s", + getIssue().getNumber(), + getEvent(), + getActor().getLogin(), + getCreatedAt().toString()); + } +} diff --git a/src/main/java/org/kohsuke/github/GHRepository.java b/src/main/java/org/kohsuke/github/GHRepository.java index 3dd0aec7f..1d1aaa1d8 100644 --- a/src/main/java/org/kohsuke/github/GHRepository.java +++ b/src/main/java/org/kohsuke/github/GHRepository.java @@ -1776,76 +1776,17 @@ public class GHRepository extends GHObject { return "/repos/" + getOwnerName() + "/" + name +tail; } - public static class IssueEventInfo { - private GitHub root; - - private long id; - private String node_id; - private String url; - private GHUser actor; - private String event; - private String commit_id; - private String commit_url; - private String created_at; - private GHIssue issue; - - public long getId() { - return id; - } - - public String getNodeId() { - return node_id; - } - - public String getUrl() { - return url; - } - - public GHUser getActor() { - return actor; - } - - public String getEvent() { - return event; - } - - public String getCommitId() { - return commit_id; - } - - public String getCommitUrl() { - return commit_url; - } - - public Date getCreatedAt() { - return GitHub.parseDate(created_at); - } - - public IssueEventInfo wrapUp(GitHub root) { - this.root = root; - return this; - } - - public GitHub getRoot() { - return root; - } - - public GHIssue getIssue() { - return issue; - } - } - /** * Get all issue events for this repository. * See https://developer.github.com/v3/issues/events/#list-events-for-a-repository */ - public PagedIterable listIssueEvents() throws IOException { - return new PagedIterable() { - public PagedIterator _iterator(int pageSize) { - return new PagedIterator(root.retrieve().asIterator(getApiTailUrl("issues/events"), IssueEventInfo[].class, pageSize)) { + public PagedIterable listIssueEvents() throws IOException { + return new PagedIterable() { + public PagedIterator _iterator(int pageSize) { + return new PagedIterator(root.retrieve().asIterator(getApiTailUrl("issues/events"), GHIssueEvent[].class, pageSize)) { @Override - protected void wrapUp(IssueEventInfo[] page) { - for (IssueEventInfo c : page) + protected void wrapUp(GHIssueEvent[] page) { + for (GHIssueEvent c : page) c.wrapUp(root); } }; @@ -1857,7 +1798,7 @@ public class GHRepository extends GHObject { * Get a single issue event. * See https://developer.github.com/v3/issues/events/#get-a-single-event */ - public IssueEventInfo getIssueEvent(int id) throws IOException { - return root.retrieve().to(getApiTailUrl("issues/events/" + id), IssueEventInfo.class).wrapUp(root); + public GHIssueEvent getIssueEvent(long id) throws IOException { + return root.retrieve().to(getApiTailUrl("issues/events/" + id), GHIssueEvent.class).wrapUp(root); } } diff --git a/src/test/java/org/kohsuke/github/GHIssueEventTest.java b/src/test/java/org/kohsuke/github/GHIssueEventTest.java new file mode 100644 index 000000000..fbdcbf366 --- /dev/null +++ b/src/test/java/org/kohsuke/github/GHIssueEventTest.java @@ -0,0 +1,50 @@ +package org.kohsuke.github; + +import java.io.IOException; +import org.junit.Test; + +/** + * @author Martin van Zijl + */ +public class GHIssueEventTest extends AbstractGitHubApiTestBase { + + @Test + public void testEventsForSingleIssue() throws Exception { + GHRepository repo = getRepository(); + GHIssue issue = repo.getIssue(1); + + for (GHIssueEvent event : issue.listEvents()) { + System.out.println(event); + } + + //TODO: Use the following... + //GHIssueBuilder builder = repo.createIssue("test from the api"); + //GHIssue issue = builder.create(); + } + + @Test + public void testRepositoryEvents() throws Exception { + GHRepository repo = getRepository(); + PagedIterable list = repo.listIssueEvents(); + + for (GHIssueEvent event : list) { + System.out.println(event); + } + } + + @Test + public void testRepositorySingleEvent() throws Exception { + GHRepository repo = getRepository(); + GHIssueEvent event = repo.getIssueEvent(2615868520L); + + System.out.println(event); + } + + protected GHRepository getRepository() throws IOException { + return getRepository(gitHub); + } + + private GHRepository getRepository(GitHub gitHub) throws IOException { + return gitHub.getOrganization("github-api-test-org").getRepository("github-api"); + } +} diff --git a/src/test/java/org/kohsuke/github/IssueEventsTest.java b/src/test/java/org/kohsuke/github/IssueEventsTest.java deleted file mode 100644 index 3b31f858c..000000000 --- a/src/test/java/org/kohsuke/github/IssueEventsTest.java +++ /dev/null @@ -1,60 +0,0 @@ -package org.kohsuke.github; - -import org.junit.Test; - -/** - * @author Martin van Zijl - */ -public class IssueEventsTest extends AbstractGitHubApiTestBase { - public static String REPOSITORY = "martinvanzijl/sandbox"; - - @Test - public void testEventsForSingleIssue() throws Exception { - GitHub github = GitHub.connect(); - GHRepository repo = github.getRepository(REPOSITORY); - GHIssue issue = repo.getIssue(1); - - for(GHIssue.IssueEventInfo info: issue.listEvents()) { - // TODO: Create toString() method from this. - String line = String.format("Issue was %s by %s on %s", - info.getEvent(), - info.getActor().getLogin(), - info.getCreatedAt().toString()); - //System.out.println(line); - } - - // TODO: Use the following... - //GHIssueBuilder builder = repo.createIssue("test from the api"); - //GHIssue issue = builder.create(); - } - - @Test - public void testRepositoryEvents() throws Exception { - GitHub github = GitHub.connect(); - GHRepository repo = github.getRepository(REPOSITORY); - PagedIterable list = repo.listIssueEvents(); - - for(GHRepository.IssueEventInfo info: list) { - String line = String.format("Issue %d was %s by %s on %s", - info.getIssue().getNumber(), - info.getEvent(), - info.getActor().getLogin(), - info.getCreatedAt().toString()); - //System.out.println(line); - } - } - - @Test - public void testRepositorySingleEvent() throws Exception { - GitHub github = GitHub.connect(); - GHRepository repo = github.getRepository(REPOSITORY); - GHRepository.IssueEventInfo info = repo.getIssueEvent(1776389306); - - String line = String.format("Issue %d was %s by %s on %s", - info.getIssue().getNumber(), - info.getEvent(), - info.getActor().getLogin(), - info.getCreatedAt().toString()); - System.out.println(line); - } -} diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/orgs_github-api-test-org-711525e9-944c-436e-9fb9-a6d2cb59e3bb.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/orgs_github-api-test-org-711525e9-944c-436e-9fb9-a6d2cb59e3bb.json new file mode 100644 index 000000000..99b5920cc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/orgs_github-api-test-org-711525e9-944c-436e-9fb9-a6d2cb59e3bb.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 7, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api-887faa6b-f4e3-4ef0-b200-3692d68f42cd.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api-887faa6b-f4e3-4ef0-b200-3692d68f42cd.json new file mode 100644 index 000000000..3335aeaf3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api-887faa6b-f4e3-4ef0-b200-3692d68f42cd.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T21:11:41Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-09T01:44:14Z", + "pushed_at": "2019-10-08T20:04:57Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 13146, + "stargazers_count": 561, + "watchers_count": 561, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 430, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 81, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 430, + "open_issues": 81, + "watchers": 561, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-09T01:44:14Z", + "pushed_at": "2019-10-08T20:04:57Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 13146, + "stargazers_count": 561, + "watchers_count": 561, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 430, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 81, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 430, + "open_issues": 81, + "watchers": 561, + "default_branch": "master" + }, + "network_count": 430, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_1-945110dd-fd1f-4592-ba04-6675d0715699.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_1-945110dd-fd1f-4592-ba04-6675d0715699.json new file mode 100644 index 000000000..bce3c7316 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_1-945110dd-fd1f-4592-ba04-6675d0715699.json @@ -0,0 +1,70 @@ +{ + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/1", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/1/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/1/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/1/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/1", + "id": 490566421, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDQ1", + "number": 1, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:13:51Z", + "updated_at": "2019-09-07T00:13:55Z", + "closed_at": "2019-09-07T00:13:55Z", + "author_association": "MEMBER", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/1", + "html_url": "https://github.com/github-api-test-org/github-api/pull/1", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/1.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/1.patch" + }, + "body": "## test", + "closed_by": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_1_events-6c9027a5-f385-42c0-9401-0c592592a5a4.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_1_events-6c9027a5-f385-42c0-9401-0c592592a5a4.json new file mode 100644 index 000000000..d8a2bbc34 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/__files/repos_github-api-test-org_github-api_issues_1_events-6c9027a5-f385-42c0-9401-0c592592a5a4.json @@ -0,0 +1,31 @@ +[ + { + "id": 2615868520, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2ODUyMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868520", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:13:55Z" + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/orgs_github-api-test-org-1-711525.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/orgs_github-api-test-org-1-711525.json new file mode 100644 index 000000000..315b14ae3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/orgs_github-api-test-org-1-711525.json @@ -0,0 +1,41 @@ +{ + "id": "711525e9-944c-436e-9fb9-a6d2cb59e3bb", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-711525e9-944c-436e-9fb9-a6d2cb59e3bb.json", + "headers": { + "Date": "Wed, 09 Oct 2019 01:56:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4904", + "X-RateLimit-Reset": "1570589791", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"4342e0e7004c1a50986c767513fe857d\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "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": "E75C:109E:4ADCA8:578A70:5D9D3E5A" + } + }, + "uuid": "711525e9-944c-436e-9fb9-a6d2cb59e3bb", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api-2-887faa.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api-2-887faa.json new file mode 100644 index 000000000..0e2301152 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api-2-887faa.json @@ -0,0 +1,41 @@ +{ + "id": "887faa6b-f4e3-4ef0-b200-3692d68f42cd", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-887faa6b-f4e3-4ef0-b200-3692d68f42cd.json", + "headers": { + "Date": "Wed, 09 Oct 2019 01:56:43 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4903", + "X-RateLimit-Reset": "1570589791", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"21451633d882317175c1eaa6ef532c2e\"", + "Last-Modified": "Mon, 30 Sep 2019 22:36:47 GMT", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "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": "E75C:109E:4ADCAB:578A74:5D9D3E5B" + } + }, + "uuid": "887faa6b-f4e3-4ef0-b200-3692d68f42cd", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_1-3-945110.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_1-3-945110.json new file mode 100644 index 000000000..eb488d0fe --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_1-3-945110.json @@ -0,0 +1,41 @@ +{ + "id": "945110dd-fd1f-4592-ba04-6675d0715699", + "name": "repos_github-api-test-org_github-api_issues_1", + "request": { + "url": "/repos/github-api-test-org/github-api/issues/1", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_issues_1-945110dd-fd1f-4592-ba04-6675d0715699.json", + "headers": { + "Date": "Wed, 09 Oct 2019 01:56:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4902", + "X-RateLimit-Reset": "1570589791", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"d5115f8fb1043f9539f3776ccfae9466\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "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": "E75C:109E:4ADCB0:578A79:5D9D3E5B" + } + }, + "uuid": "945110dd-fd1f-4592-ba04-6675d0715699", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_1_events-4-6c9027.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_1_events-4-6c9027.json new file mode 100644 index 000000000..dc2666eb5 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testEventsForSingleIssue/mappings/repos_github-api-test-org_github-api_issues_1_events-4-6c9027.json @@ -0,0 +1,40 @@ +{ + "id": "6c9027a5-f385-42c0-9401-0c592592a5a4", + "name": "repos_github-api-test-org_github-api_issues_1_events", + "request": { + "url": "/repos/github-api-test-org/github-api/issues/1/events", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_issues_1_events-6c9027a5-f385-42c0-9401-0c592592a5a4.json", + "headers": { + "Date": "Wed, 09 Oct 2019 01:56:44 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4901", + "X-RateLimit-Reset": "1570589791", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"a95550ce9f353a483ddc61973018282f\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "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": "E75C:109E:4ADCB3:578A7D:5D9D3E5C" + } + }, + "uuid": "6c9027a5-f385-42c0-9401-0c592592a5a4", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/orgs_github-api-test-org-271bc78a-da92-4b95-978e-696a960ae591.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/orgs_github-api-test-org-271bc78a-da92-4b95-978e-696a960ae591.json new file mode 100644 index 000000000..99b5920cc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/orgs_github-api-test-org-271bc78a-da92-4b95-978e-696a960ae591.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 7, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repos_github-api-test-org_github-api-ed242e3b-40a3-40ac-bf20-e3b9f26f2808.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repos_github-api-test-org_github-api-ed242e3b-40a3-40ac-bf20-e3b9f26f2808.json new file mode 100644 index 000000000..3335aeaf3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repos_github-api-test-org_github-api-ed242e3b-40a3-40ac-bf20-e3b9f26f2808.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T21:11:41Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-09T01:44:14Z", + "pushed_at": "2019-10-08T20:04:57Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 13146, + "stargazers_count": 561, + "watchers_count": 561, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 430, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 81, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 430, + "open_issues": 81, + "watchers": 561, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-09T01:44:14Z", + "pushed_at": "2019-10-08T20:04:57Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 13146, + "stargazers_count": 561, + "watchers_count": 561, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 430, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 81, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 430, + "open_issues": 81, + "watchers": 561, + "default_branch": "master" + }, + "network_count": 430, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repos_github-api-test-org_github-api_issues_events-55f59417-2e95-45c8-8ae0-7920e8f45eec.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repos_github-api-test-org_github-api_issues_events-55f59417-2e95-45c8-8ae0-7920e8f45eec.json new file mode 100644 index 000000000..0ca9c1d75 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repos_github-api-test-org_github-api_issues_events-55f59417-2e95-45c8-8ae0-7920e8f45eec.json @@ -0,0 +1,2598 @@ +[ + { + "id": 2689533890, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY4OTUzMzg5MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689533890", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T21:11:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/309", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/309/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/309/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/309/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/309", + "id": 503016634, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTc2NzY0", + "number": 309, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T21:11:40Z", + "updated_at": "2019-10-05T21:11:44Z", + "closed_at": "2019-10-05T21:11:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/309", + "html_url": "https://github.com/github-api-test-org/github-api/pull/309", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/309.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/309.patch" + }, + "body": "## test" + } + }, + { + "id": 2689529120, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY4OTUyOTEyMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689529120", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T21:06:17Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/308", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/308/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/308/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/308/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/308", + "id": 503016151, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTc2NDE3", + "number": 308, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T21:06:14Z", + "updated_at": "2019-10-05T21:06:17Z", + "closed_at": "2019-10-05T21:06:17Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/308", + "html_url": "https://github.com/github-api-test-org/github-api/pull/308", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/308.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/308.patch" + }, + "body": "## test" + } + }, + { + "id": 2689528838, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY4OTUyODgzOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689528838", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T21:05:41Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/307", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/307/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/307/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/307/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/307", + "id": 503016070, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTc2MzY0", + "number": 307, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T21:05:18Z", + "updated_at": "2019-10-05T21:05:41Z", + "closed_at": "2019-10-05T21:05:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/307", + "html_url": "https://github.com/github-api-test-org/github-api/pull/307", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/307.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/307.patch" + }, + "body": "## test" + } + }, + { + "id": 2689528162, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY4OTUyODE2Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689528162", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T21:03:55Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/306", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/306/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/306/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/306/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/306", + "id": 503015957, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTc2Mjg1", + "number": 306, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T21:03:53Z", + "updated_at": "2019-10-05T21:03:55Z", + "closed_at": "2019-10-05T21:03:55Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/306", + "html_url": "https://github.com/github-api-test-org/github-api/pull/306", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/306.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/306.patch" + }, + "body": "## test" + } + }, + { + "id": 2689526916, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY4OTUyNjkxNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689526916", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T21:02:37Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/305", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/305/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/305/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/305/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/305", + "id": 503015817, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTc2MTgz", + "number": 305, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T21:02:35Z", + "updated_at": "2019-10-05T21:02:37Z", + "closed_at": "2019-10-05T21:02:37Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/305", + "html_url": "https://github.com/github-api-test-org/github-api/pull/305", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/305.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/305.patch" + }, + "body": "## test" + } + }, + { + "id": 2689293858, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY4OTI5Mzg1OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689293858", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T13:12:38Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/304", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/304/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/304/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/304/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/304", + "id": 502961627, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM4NjI5", + "number": 304, + "title": "testPullRequestTeamReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T13:12:37Z", + "updated_at": "2019-10-05T13:12:38Z", + "closed_at": "2019-10-05T13:12:38Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304", + "html_url": "https://github.com/github-api-test-org/github-api/pull/304", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/304.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/304.patch" + }, + "body": "## test" + } + }, + { + "id": 2689293845, + "node_id": "MDIwOlJldmlld1JlcXVlc3RlZEV2ZW50MjY4OTI5Mzg0NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689293845", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "review_requested", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T13:12:37Z", + "review_requester": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "requested_team": { + "name": "dummy-team", + "id": 3451996, + "node_id": "MDQ6VGVhbTM0NTE5OTY=", + "slug": "dummy-team", + "description": "Updated by API TestModified", + "privacy": "closed", + "url": "https://api.github.com/teams/3451996", + "html_url": "https://github.com/orgs/github-api-test-org/teams/dummy-team", + "members_url": "https://api.github.com/teams/3451996/members{/member}", + "repositories_url": "https://api.github.com/teams/3451996/repos", + "permission": "pull" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/304", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/304/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/304/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/304/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/304", + "id": 502961627, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM4NjI5", + "number": 304, + "title": "testPullRequestTeamReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T13:12:37Z", + "updated_at": "2019-10-05T13:12:38Z", + "closed_at": "2019-10-05T13:12:38Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/304", + "html_url": "https://github.com/github-api-test-org/github-api/pull/304", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/304.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/304.patch" + }, + "body": "## test" + } + }, + { + "id": 2689289235, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY4OTI4OTIzNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689289235", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T13:02:19Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/303", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/303/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/303/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/303/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/303", + "id": 502959055, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM2ODYx", + "number": 303, + "title": "testPullRequestTeamReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T12:46:14Z", + "updated_at": "2019-10-05T13:02:19Z", + "closed_at": "2019-10-05T13:02:19Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/303", + "html_url": "https://github.com/github-api-test-org/github-api/pull/303", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/303.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/303.patch" + }, + "body": "## test" + } + }, + { + "id": 2689282060, + "node_id": "MDIwOlJldmlld1JlcXVlc3RlZEV2ZW50MjY4OTI4MjA2MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689282060", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "review_requested", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T12:46:15Z", + "review_requester": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "requested_team": { + "name": "dummy-team", + "id": 3451996, + "node_id": "MDQ6VGVhbTM0NTE5OTY=", + "slug": "dummy-team", + "description": "Updated by API TestModified", + "privacy": "closed", + "url": "https://api.github.com/teams/3451996", + "html_url": "https://github.com/orgs/github-api-test-org/teams/dummy-team", + "members_url": "https://api.github.com/teams/3451996/members{/member}", + "repositories_url": "https://api.github.com/teams/3451996/repos", + "permission": "pull" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/303", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/303/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/303/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/303/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/303", + "id": 502959055, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM2ODYx", + "number": 303, + "title": "testPullRequestTeamReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T12:46:14Z", + "updated_at": "2019-10-05T13:02:19Z", + "closed_at": "2019-10-05T13:02:19Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/303", + "html_url": "https://github.com/github-api-test-org/github-api/pull/303", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/303.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/303.patch" + }, + "body": "## test" + } + }, + { + "id": 2689281438, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY4OTI4MTQzOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689281438", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T12:44:47Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/302", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/302/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/302/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/302/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/302", + "id": 502958900, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM2NzY1", + "number": 302, + "title": "testPullRequestTeamReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T12:44:46Z", + "updated_at": "2019-10-05T12:44:47Z", + "closed_at": "2019-10-05T12:44:47Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/302", + "html_url": "https://github.com/github-api-test-org/github-api/pull/302", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/302.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/302.patch" + }, + "body": "## test" + } + }, + { + "id": 2689279995, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY4OTI3OTk5NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689279995", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T12:41:40Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/301", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/301/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/301/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/301/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/301", + "id": 502958575, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM2NTQ2", + "number": 301, + "title": "testPullRequestTeamReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T12:41:39Z", + "updated_at": "2019-10-05T12:41:40Z", + "closed_at": "2019-10-05T12:41:40Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/301", + "html_url": "https://github.com/github-api-test-org/github-api/pull/301", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/301.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/301.patch" + }, + "body": "## test" + } + }, + { + "id": 2689279274, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY4OTI3OTI3NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689279274", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T12:40:03Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/300", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/300/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/300/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/300/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/300", + "id": 502958421, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM2NDQ1", + "number": 300, + "title": "testPullRequestTeamReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T12:40:01Z", + "updated_at": "2019-10-05T12:40:03Z", + "closed_at": "2019-10-05T12:40:03Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/300", + "html_url": "https://github.com/github-api-test-org/github-api/pull/300", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/300.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/300.patch" + }, + "body": "## test" + } + }, + { + "id": 2689276859, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY4OTI3Njg1OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689276859", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T12:34:33Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/299", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/299/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/299/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/299/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/299", + "id": 502957866, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM2MDc3", + "number": 299, + "title": "testPullRequestReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T12:34:31Z", + "updated_at": "2019-10-05T12:34:33Z", + "closed_at": "2019-10-05T12:34:33Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299", + "html_url": "https://github.com/github-api-test-org/github-api/pull/299", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/299.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/299.patch" + }, + "body": "## test" + } + }, + { + "id": 2689276842, + "node_id": "MDIwOlJldmlld1JlcXVlc3RlZEV2ZW50MjY4OTI3Njg0Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2689276842", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "review_requested", + "commit_id": null, + "commit_url": null, + "created_at": "2019-10-05T12:34:32Z", + "review_requester": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "requested_reviewer": { + "login": "kohsuke2", + "id": 1329242, + "node_id": "MDQ6VXNlcjEzMjkyNDI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1329242?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke2", + "html_url": "https://github.com/kohsuke2", + "followers_url": "https://api.github.com/users/kohsuke2/followers", + "following_url": "https://api.github.com/users/kohsuke2/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke2/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke2/orgs", + "repos_url": "https://api.github.com/users/kohsuke2/repos", + "events_url": "https://api.github.com/users/kohsuke2/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke2/received_events", + "type": "User", + "site_admin": false + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/299", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/299/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/299/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/299/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/299", + "id": 502957866, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzI0OTM2MDc3", + "number": 299, + "title": "testPullRequestReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-10-05T12:34:31Z", + "updated_at": "2019-10-05T12:34:33Z", + "closed_at": "2019-10-05T12:34:33Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/299", + "html_url": "https://github.com/github-api-test-org/github-api/pull/299", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/299.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/299.patch" + }, + "body": "## test" + } + }, + { + "id": 2652148783, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY1MjE0ODc4Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2652148783", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-21T14:29:16Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/298", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/298/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/298/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/298/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/298", + "id": 496662096, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE5OTY0MzI4", + "number": 298, + "title": "testPullRequestReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-21T14:29:14Z", + "updated_at": "2019-09-21T14:29:16Z", + "closed_at": "2019-09-21T14:29:16Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/298", + "html_url": "https://github.com/github-api-test-org/github-api/pull/298", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/298.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/298.patch" + }, + "body": "## test" + } + }, + { + "id": 2652148776, + "node_id": "MDIwOlJldmlld1JlcXVlc3RlZEV2ZW50MjY1MjE0ODc3Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2652148776", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "review_requested", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-21T14:29:14Z", + "review_requester": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "requested_reviewer": { + "login": "kohsuke2", + "id": 1329242, + "node_id": "MDQ6VXNlcjEzMjkyNDI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1329242?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke2", + "html_url": "https://github.com/kohsuke2", + "followers_url": "https://api.github.com/users/kohsuke2/followers", + "following_url": "https://api.github.com/users/kohsuke2/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke2/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke2/orgs", + "repos_url": "https://api.github.com/users/kohsuke2/repos", + "events_url": "https://api.github.com/users/kohsuke2/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke2/received_events", + "type": "User", + "site_admin": false + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/298", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/298/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/298/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/298/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/298", + "id": 496662096, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE5OTY0MzI4", + "number": 298, + "title": "testPullRequestReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-21T14:29:14Z", + "updated_at": "2019-09-21T14:29:16Z", + "closed_at": "2019-09-21T14:29:16Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/298", + "html_url": "https://github.com/github-api-test-org/github-api/pull/298", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/298.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/298.patch" + }, + "body": "## test" + } + }, + { + "id": 2652148370, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY1MjE0ODM3MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2652148370", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-21T14:28:19Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/297", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/297/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/297/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/297/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/297", + "id": 496662005, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE5OTY0MjYw", + "number": 297, + "title": "testPullRequestReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-21T14:28:17Z", + "updated_at": "2019-09-21T14:28:19Z", + "closed_at": "2019-09-21T14:28:19Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/297", + "html_url": "https://github.com/github-api-test-org/github-api/pull/297", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/297.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/297.patch" + }, + "body": "## test" + } + }, + { + "id": 2652148362, + "node_id": "MDIwOlJldmlld1JlcXVlc3RlZEV2ZW50MjY1MjE0ODM2Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2652148362", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "review_requested", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-21T14:28:18Z", + "review_requester": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "requested_reviewer": { + "login": "kohsuke2", + "id": 1329242, + "node_id": "MDQ6VXNlcjEzMjkyNDI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1329242?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke2", + "html_url": "https://github.com/kohsuke2", + "followers_url": "https://api.github.com/users/kohsuke2/followers", + "following_url": "https://api.github.com/users/kohsuke2/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke2/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke2/orgs", + "repos_url": "https://api.github.com/users/kohsuke2/repos", + "events_url": "https://api.github.com/users/kohsuke2/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke2/received_events", + "type": "User", + "site_admin": false + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/297", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/297/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/297/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/297/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/297", + "id": 496662005, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE5OTY0MjYw", + "number": 297, + "title": "testPullRequestReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-21T14:28:17Z", + "updated_at": "2019-09-21T14:28:19Z", + "closed_at": "2019-09-21T14:28:19Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/297", + "html_url": "https://github.com/github-api-test-org/github-api/pull/297", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/297.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/297.patch" + }, + "body": "## test" + } + }, + { + "id": 2652147584, + "node_id": "MDExOkNsb3NlZEV2ZW50MjY1MjE0NzU4NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2652147584", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-21T14:26:33Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/296", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/296/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/296/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/296/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/296", + "id": 496661825, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE5OTY0MTQw", + "number": 296, + "title": "testPullRequestReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-21T14:26:31Z", + "updated_at": "2019-09-21T14:26:33Z", + "closed_at": "2019-09-21T14:26:33Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/296", + "html_url": "https://github.com/github-api-test-org/github-api/pull/296", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/296.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/296.patch" + }, + "body": "## test" + } + }, + { + "id": 2652147572, + "node_id": "MDIwOlJldmlld1JlcXVlc3RlZEV2ZW50MjY1MjE0NzU3Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2652147572", + "actor": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "event": "review_requested", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-21T14:26:32Z", + "review_requester": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "requested_reviewer": { + "login": "kohsuke2", + "id": 1329242, + "node_id": "MDQ6VXNlcjEzMjkyNDI=", + "avatar_url": "https://avatars2.githubusercontent.com/u/1329242?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/kohsuke2", + "html_url": "https://github.com/kohsuke2", + "followers_url": "https://api.github.com/users/kohsuke2/followers", + "following_url": "https://api.github.com/users/kohsuke2/following{/other_user}", + "gists_url": "https://api.github.com/users/kohsuke2/gists{/gist_id}", + "starred_url": "https://api.github.com/users/kohsuke2/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/kohsuke2/subscriptions", + "organizations_url": "https://api.github.com/users/kohsuke2/orgs", + "repos_url": "https://api.github.com/users/kohsuke2/repos", + "events_url": "https://api.github.com/users/kohsuke2/events{/privacy}", + "received_events_url": "https://api.github.com/users/kohsuke2/received_events", + "type": "User", + "site_admin": false + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/296", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/296/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/296/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/296/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/296", + "id": 496661825, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE5OTY0MTQw", + "number": 296, + "title": "testPullRequestReviewRequests", + "user": { + "login": "farmdawgnation", + "id": 620189, + "node_id": "MDQ6VXNlcjYyMDE4OQ==", + "avatar_url": "https://avatars2.githubusercontent.com/u/620189?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/farmdawgnation", + "html_url": "https://github.com/farmdawgnation", + "followers_url": "https://api.github.com/users/farmdawgnation/followers", + "following_url": "https://api.github.com/users/farmdawgnation/following{/other_user}", + "gists_url": "https://api.github.com/users/farmdawgnation/gists{/gist_id}", + "starred_url": "https://api.github.com/users/farmdawgnation/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/farmdawgnation/subscriptions", + "organizations_url": "https://api.github.com/users/farmdawgnation/orgs", + "repos_url": "https://api.github.com/users/farmdawgnation/repos", + "events_url": "https://api.github.com/users/farmdawgnation/events{/privacy}", + "received_events_url": "https://api.github.com/users/farmdawgnation/received_events", + "type": "User", + "site_admin": false + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-21T14:26:31Z", + "updated_at": "2019-09-21T14:26:33Z", + "closed_at": "2019-09-21T14:26:33Z", + "author_association": "COLLABORATOR", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/296", + "html_url": "https://github.com/github-api-test-org/github-api/pull/296", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/296.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/296.patch" + }, + "body": "## test" + } + }, + { + "id": 2623507248, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMzUwNzI0OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2623507248", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T19:59:00Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/295", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/295/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/295/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/295/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/295", + "id": 491868141, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MTUzMDk0", + "number": 295, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T19:58:58Z", + "updated_at": "2019-09-10T19:59:00Z", + "closed_at": "2019-09-10T19:58:59Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/295", + "html_url": "https://github.com/github-api-test-org/github-api/pull/295", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/295.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/295.patch" + }, + "body": "## test" + } + }, + { + "id": 2623244519, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMzI0NDUxOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2623244519", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T18:23:28Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/294", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/294/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/294/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/294/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/294", + "id": 491827352, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MTE5NjA4", + "number": 294, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T18:23:23Z", + "updated_at": "2019-09-10T18:23:28Z", + "closed_at": "2019-09-10T18:23:28Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/294", + "html_url": "https://github.com/github-api-test-org/github-api/pull/294", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/294.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/294.patch" + }, + "body": "## test" + } + }, + { + "id": 2623233017, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMzIzMzAxNw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2623233017", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T18:19:41Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/293", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/293/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/293/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/293/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/293", + "id": 491825727, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MTE4Mjg2", + "number": 293, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T18:19:38Z", + "updated_at": "2019-09-10T18:19:41Z", + "closed_at": "2019-09-10T18:19:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/293", + "html_url": "https://github.com/github-api-test-org/github-api/pull/293", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/293.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/293.patch" + }, + "body": "## test" + } + }, + { + "id": 2623226299, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMzIyNjI5OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2623226299", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T18:17:25Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/292", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/292/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/292/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/292/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/292", + "id": 491824771, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MTE3NDk4", + "number": 292, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T18:17:21Z", + "updated_at": "2019-09-10T18:17:25Z", + "closed_at": "2019-09-10T18:17:25Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/292", + "html_url": "https://github.com/github-api-test-org/github-api/pull/292", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/292.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/292.patch" + }, + "body": "## test" + } + }, + { + "id": 2623215956, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMzIxNTk1Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2623215956", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T18:13:42Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/291", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/291/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/291/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/291/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/291", + "id": 491822440, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MTE1NjE0", + "number": 291, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T18:11:54Z", + "updated_at": "2019-09-10T18:13:42Z", + "closed_at": "2019-09-10T18:13:42Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/291", + "html_url": "https://github.com/github-api-test-org/github-api/pull/291", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/291.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/291.patch" + }, + "body": "## test" + } + }, + { + "id": 2622801467, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjgwMTQ2Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622801467", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T15:54:18Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/290", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/290/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/290/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/290/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/290", + "id": 491760487, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDY1Mzg5", + "number": 290, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T15:54:14Z", + "updated_at": "2019-09-10T15:54:18Z", + "closed_at": "2019-09-10T15:54:18Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/290", + "html_url": "https://github.com/github-api-test-org/github-api/pull/290", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/290.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/290.patch" + }, + "body": "## test" + } + }, + { + "id": 2622777398, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjc3NzM5OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622777398", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T15:47:25Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/289", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/289/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/289/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/289/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/289", + "id": 491756553, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDYyMTc5", + "number": 289, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T15:47:08Z", + "updated_at": "2019-09-10T15:47:25Z", + "closed_at": "2019-09-10T15:47:25Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/289", + "html_url": "https://github.com/github-api-test-org/github-api/pull/289", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/289.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/289.patch" + }, + "body": "## test" + } + }, + { + "id": 2622701287, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjcwMTI4Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622701287", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T15:26:32Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/288", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/288/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/288/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/288/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/288", + "id": 491744750, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDUyNTEz", + "number": 288, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T15:26:28Z", + "updated_at": "2019-09-10T15:26:32Z", + "closed_at": "2019-09-10T15:26:32Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/288", + "html_url": "https://github.com/github-api-test-org/github-api/pull/288", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/288.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/288.patch" + }, + "body": "## test" + } + }, + { + "id": 2622542572, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjU0MjU3Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622542572", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T14:45:02Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/287", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/287/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/287/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/287/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/287", + "id": 491719499, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDMxODEx", + "number": 287, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T14:44:14Z", + "updated_at": "2019-09-10T14:45:02Z", + "closed_at": "2019-09-10T14:45:02Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/287", + "html_url": "https://github.com/github-api-test-org/github-api/pull/287", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/287.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/287.patch" + }, + "body": "## test" + } + }, + { + "id": 2622516997, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjUxNjk5Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622516997", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T14:38:18Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/286", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/286/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/286/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/286/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/286", + "id": 491712999, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDI2NTcz", + "number": 286, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T14:33:37Z", + "updated_at": "2019-09-10T14:38:18Z", + "closed_at": "2019-09-10T14:38:18Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/286", + "html_url": "https://github.com/github-api-test-org/github-api/pull/286", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/286.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/286.patch" + }, + "body": "## test" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-0dfa7d8f-eba8-4155-8604-ee86d335c3c0.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-0dfa7d8f-eba8-4155-8604-ee86d335c3c0.json new file mode 100644 index 000000000..8f74f4161 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-0dfa7d8f-eba8-4155-8604-ee86d335c3c0.json @@ -0,0 +1,2372 @@ +[ + { + "id": 2616602870, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMjg3MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602870", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:26Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/261", + "id": 490720728, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzE5", + "number": 261, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:23Z", + "updated_at": "2019-09-08T07:25:55Z", + "closed_at": "2019-09-08T07:24:25Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/261", + "html_url": "https://github.com/github-api-test-org/github-api/pull/261", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/261.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/261.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616602869, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjYwMjg2OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602869", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "merged", + "commit_id": "912e2176a00e60e02196737e0ae4c218a14b5dcb", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/912e2176a00e60e02196737e0ae4c218a14b5dcb", + "created_at": "2019-09-08T07:24:25Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/261", + "id": 490720728, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzE5", + "number": 261, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:23Z", + "updated_at": "2019-09-08T07:25:55Z", + "closed_at": "2019-09-08T07:24:25Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/261", + "html_url": "https://github.com/github-api-test-org/github-api/pull/261", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/261.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/261.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616602868, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY2MDI4Njg=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602868", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "referenced", + "commit_id": "912e2176a00e60e02196737e0ae4c218a14b5dcb", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/912e2176a00e60e02196737e0ae4c218a14b5dcb", + "created_at": "2019-09-08T07:24:25Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/261", + "id": 490720728, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzE5", + "number": 261, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:23Z", + "updated_at": "2019-09-08T07:25:55Z", + "closed_at": "2019-09-08T07:24:25Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/261", + "html_url": "https://github.com/github-api-test-org/github-api/pull/261", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/261.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/261.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616602821, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMjgyMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602821", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:17Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/259", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/259/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/259/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/259/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/259", + "id": 490720714, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzEw", + "number": 259, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:14Z", + "updated_at": "2019-09-08T07:24:17Z", + "closed_at": "2019-09-08T07:24:17Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/259", + "html_url": "https://github.com/github-api-test-org/github-api/pull/259", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/259.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/259.patch" + }, + "body": null + } + }, + { + "id": 2616602819, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMjgxOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602819", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:16Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/260", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/260/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/260/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/260/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/260", + "id": 490720715, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzEx", + "number": 260, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:15Z", + "updated_at": "2019-09-08T07:24:16Z", + "closed_at": "2019-09-08T07:24:16Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/260", + "html_url": "https://github.com/github-api-test-org/github-api/pull/260", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/260.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/260.patch" + }, + "body": null + } + }, + { + "id": 2616602792, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMjc5Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602792", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:13Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/258", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/258/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/258/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/258/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/258", + "id": 490720707, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzA1", + "number": 258, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:09Z", + "updated_at": "2019-09-08T07:24:12Z", + "closed_at": "2019-09-08T07:24:12Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/258", + "html_url": "https://github.com/github-api-test-org/github-api/pull/258", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/258.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/258.patch" + }, + "body": "## test" + } + }, + { + "id": 2616602013, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NjAyMDEz", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602013", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:22:13Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/257", + "id": 490718451, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUwODEz", + "number": 257, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:55:35Z", + "updated_at": "2019-09-08T07:22:13Z", + "closed_at": "2019-09-08T06:55:37Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/257", + "html_url": "https://github.com/github-api-test-org/github-api/pull/257", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/257.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/257.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616592221, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU5MjIyMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616592221", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:55:37Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/257", + "id": 490718451, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUwODEz", + "number": 257, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:55:35Z", + "updated_at": "2019-09-08T07:22:13Z", + "closed_at": "2019-09-08T06:55:37Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/257", + "html_url": "https://github.com/github-api-test-org/github-api/pull/257", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/257.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/257.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616592220, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjU5MjIyMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616592220", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "merged", + "commit_id": "3635cfa5fb1d5e8e2a6da110f7a3d8b3cc0d8818", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/3635cfa5fb1d5e8e2a6da110f7a3d8b3cc0d8818", + "created_at": "2019-09-08T06:55:37Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/257", + "id": 490718451, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUwODEz", + "number": 257, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:55:35Z", + "updated_at": "2019-09-08T07:22:13Z", + "closed_at": "2019-09-08T06:55:37Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/257", + "html_url": "https://github.com/github-api-test-org/github-api/pull/257", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/257.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/257.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616592219, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY1OTIyMTk=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616592219", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "referenced", + "commit_id": "3635cfa5fb1d5e8e2a6da110f7a3d8b3cc0d8818", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/3635cfa5fb1d5e8e2a6da110f7a3d8b3cc0d8818", + "created_at": "2019-09-08T06:55:37Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/257/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/257", + "id": 490718451, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUwODEz", + "number": 257, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:55:35Z", + "updated_at": "2019-09-08T07:22:13Z", + "closed_at": "2019-09-08T06:55:37Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/257", + "html_url": "https://github.com/github-api-test-org/github-api/pull/257", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/257.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/257.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616592047, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NTkyMDQ3", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616592047", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:55:04Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/256", + "id": 490718385, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUwNzY0", + "number": 256, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:54:41Z", + "updated_at": "2019-09-08T06:55:04Z", + "closed_at": "2019-09-08T06:54:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/256", + "html_url": "https://github.com/github-api-test-org/github-api/pull/256", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/256.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/256.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616591929, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU5MTkyOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616591929", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:54:43Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/256", + "id": 490718385, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUwNzY0", + "number": 256, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:54:41Z", + "updated_at": "2019-09-08T06:55:04Z", + "closed_at": "2019-09-08T06:54:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/256", + "html_url": "https://github.com/github-api-test-org/github-api/pull/256", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/256.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/256.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616591927, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjU5MTkyNw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616591927", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "merged", + "commit_id": "d7c5519e669a491df99919c21389bdc5b40123d7", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/d7c5519e669a491df99919c21389bdc5b40123d7", + "created_at": "2019-09-08T06:54:43Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/256", + "id": 490718385, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUwNzY0", + "number": 256, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:54:41Z", + "updated_at": "2019-09-08T06:55:04Z", + "closed_at": "2019-09-08T06:54:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/256", + "html_url": "https://github.com/github-api-test-org/github-api/pull/256", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/256.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/256.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616591926, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY1OTE5MjY=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616591926", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "referenced", + "commit_id": "d7c5519e669a491df99919c21389bdc5b40123d7", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/d7c5519e669a491df99919c21389bdc5b40123d7", + "created_at": "2019-09-08T06:54:43Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/256/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/256", + "id": 490718385, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUwNzY0", + "number": 256, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:54:41Z", + "updated_at": "2019-09-08T06:55:04Z", + "closed_at": "2019-09-08T06:54:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/256", + "html_url": "https://github.com/github-api-test-org/github-api/pull/256", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/256.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/256.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616585693, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NTg1Njkz", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616585693", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:36:14Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/255", + "id": 490716883, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5NzA0", + "number": 255, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:32:40Z", + "updated_at": "2019-09-08T06:36:14Z", + "closed_at": "2019-09-08T06:32:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/255", + "html_url": "https://github.com/github-api-test-org/github-api/pull/255", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/255.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/255.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616584595, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU4NDU5NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616584595", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:32:43Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/255", + "id": 490716883, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5NzA0", + "number": 255, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:32:40Z", + "updated_at": "2019-09-08T06:36:14Z", + "closed_at": "2019-09-08T06:32:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/255", + "html_url": "https://github.com/github-api-test-org/github-api/pull/255", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/255.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/255.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616584593, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjU4NDU5Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616584593", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "merged", + "commit_id": "f4e47a3f73b3e020631599efda52f14082524d59", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/f4e47a3f73b3e020631599efda52f14082524d59", + "created_at": "2019-09-08T06:32:43Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/255", + "id": 490716883, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5NzA0", + "number": 255, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:32:40Z", + "updated_at": "2019-09-08T06:36:14Z", + "closed_at": "2019-09-08T06:32:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/255", + "html_url": "https://github.com/github-api-test-org/github-api/pull/255", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/255.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/255.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616584592, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY1ODQ1OTI=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616584592", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "referenced", + "commit_id": "f4e47a3f73b3e020631599efda52f14082524d59", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/f4e47a3f73b3e020631599efda52f14082524d59", + "created_at": "2019-09-08T06:32:43Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/255/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/255", + "id": 490716883, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5NzA0", + "number": 255, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:32:40Z", + "updated_at": "2019-09-08T06:36:14Z", + "closed_at": "2019-09-08T06:32:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/255", + "html_url": "https://github.com/github-api-test-org/github-api/pull/255", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/255.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/255.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616584137, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NTg0MTM3", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616584137", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:31:22Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/254", + "id": 490716565, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5NTE1", + "number": 254, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:28:31Z", + "updated_at": "2019-09-08T06:31:22Z", + "closed_at": "2019-09-08T06:28:34Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/254", + "html_url": "https://github.com/github-api-test-org/github-api/pull/254", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/254.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/254.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616583295, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU4MzI5NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616583295", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:28:34Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/254", + "id": 490716565, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5NTE1", + "number": 254, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:28:31Z", + "updated_at": "2019-09-08T06:31:22Z", + "closed_at": "2019-09-08T06:28:34Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/254", + "html_url": "https://github.com/github-api-test-org/github-api/pull/254", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/254.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/254.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616583293, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjU4MzI5Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616583293", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "merged", + "commit_id": "846d413a390536c82419c18b672c9c228d210aa5", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/846d413a390536c82419c18b672c9c228d210aa5", + "created_at": "2019-09-08T06:28:34Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/254", + "id": 490716565, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5NTE1", + "number": 254, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:28:31Z", + "updated_at": "2019-09-08T06:31:22Z", + "closed_at": "2019-09-08T06:28:34Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/254", + "html_url": "https://github.com/github-api-test-org/github-api/pull/254", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/254.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/254.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616583291, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY1ODMyOTE=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616583291", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "referenced", + "commit_id": "846d413a390536c82419c18b672c9c228d210aa5", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/846d413a390536c82419c18b672c9c228d210aa5", + "created_at": "2019-09-08T06:28:34Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/254/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/254", + "id": 490716565, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5NTE1", + "number": 254, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:28:31Z", + "updated_at": "2019-09-08T06:31:22Z", + "closed_at": "2019-09-08T06:28:34Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/254", + "html_url": "https://github.com/github-api-test-org/github-api/pull/254", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/254.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/254.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616583073, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NTgzMDcz", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616583073", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:27:56Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/253", + "id": 490716080, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5MTgx", + "number": 253, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:20:49Z", + "updated_at": "2019-09-08T06:27:56Z", + "closed_at": "2019-09-08T06:20:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/253", + "html_url": "https://github.com/github-api-test-org/github-api/pull/253", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/253.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/253.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616580843, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU4MDg0Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616580843", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:20:51Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/253", + "id": 490716080, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5MTgx", + "number": 253, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:20:49Z", + "updated_at": "2019-09-08T06:27:56Z", + "closed_at": "2019-09-08T06:20:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/253", + "html_url": "https://github.com/github-api-test-org/github-api/pull/253", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/253.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/253.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616580842, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjU4MDg0Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616580842", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "merged", + "commit_id": "5c3b1ddd0395cc79bd87a955666a1b04990baca5", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/5c3b1ddd0395cc79bd87a955666a1b04990baca5", + "created_at": "2019-09-08T06:20:51Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/253", + "id": 490716080, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5MTgx", + "number": 253, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:20:49Z", + "updated_at": "2019-09-08T06:27:56Z", + "closed_at": "2019-09-08T06:20:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/253", + "html_url": "https://github.com/github-api-test-org/github-api/pull/253", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/253.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/253.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616580841, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY1ODA4NDE=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616580841", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "referenced", + "commit_id": "5c3b1ddd0395cc79bd87a955666a1b04990baca5", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/5c3b1ddd0395cc79bd87a955666a1b04990baca5", + "created_at": "2019-09-08T06:20:51Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/253/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/253", + "id": 490716080, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5MTgx", + "number": 253, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:20:49Z", + "updated_at": "2019-09-08T06:27:56Z", + "closed_at": "2019-09-08T06:20:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/253", + "html_url": "https://github.com/github-api-test-org/github-api/pull/253", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/253.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/253.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616580460, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU4MDQ2MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616580460", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:19:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/252", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/252/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/252/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/252/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/252", + "id": 490716006, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5MTI4", + "number": 252, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:19:43Z", + "updated_at": "2019-09-08T06:19:44Z", + "closed_at": "2019-09-08T06:19:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/252", + "html_url": "https://github.com/github-api-test-org/github-api/pull/252", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/252.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/252.patch" + }, + "body": "## test" + } + }, + { + "id": 2616580320, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU4MDMyMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616580320", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:19:11Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/251", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/251/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/251/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/251/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/251", + "id": 490715981, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5MTA3", + "number": 251, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:19:10Z", + "updated_at": "2019-09-08T06:19:11Z", + "closed_at": "2019-09-08T06:19:11Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/251", + "html_url": "https://github.com/github-api-test-org/github-api/pull/251", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/251.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/251.patch" + }, + "body": "## test" + } + }, + { + "id": 2616579836, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU3OTgzNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616579836", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:17:22Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/250", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/250/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/250/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/250/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/250", + "id": 490715869, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ5MDIz", + "number": 250, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:17:21Z", + "updated_at": "2019-09-08T06:17:22Z", + "closed_at": "2019-09-08T06:17:22Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/250", + "html_url": "https://github.com/github-api-test-org/github-api/pull/250", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/250.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/250.patch" + }, + "body": "## test" + } + }, + { + "id": 2616578453, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NTc4NDUz", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616578453", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:12:46Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/249", + "id": 490715559, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ4ODAy", + "number": 249, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:12:42Z", + "updated_at": "2019-09-08T06:12:46Z", + "closed_at": "2019-09-08T06:12:45Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/249", + "html_url": "https://github.com/github-api-test-org/github-api/pull/249", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/249.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/249.patch" + }, + "body": "## test squash" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-11f3c150-f073-4465-8fe4-8641211cc487.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-11f3c150-f073-4465-8fe4-8641211cc487.json new file mode 100644 index 000000000..26a1f94f0 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-11f3c150-f073-4465-8fe4-8641211cc487.json @@ -0,0 +1,2514 @@ +[ + { + "id": 2616390652, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjM5MDY1Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616390652", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T19:55:13Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/138", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/138/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/138/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/138/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/138", + "id": 490674077, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjIwOTY0", + "number": 138, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T19:55:12Z", + "updated_at": "2019-09-07T19:55:13Z", + "closed_at": "2019-09-07T19:55:13Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/138", + "html_url": "https://github.com/github-api-test-org/github-api/pull/138", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/138.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/138.patch" + }, + "body": "## test" + } + }, + { + "id": 2616389990, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjM4OTk5MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616389990", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T19:53:43Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/137", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/137/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/137/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/137/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/137", + "id": 490673917, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjIwODY3", + "number": 137, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T19:53:42Z", + "updated_at": "2019-09-07T19:53:43Z", + "closed_at": "2019-09-07T19:53:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/137", + "html_url": "https://github.com/github-api-test-org/github-api/pull/137", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/137.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/137.patch" + }, + "body": "## test" + } + }, + { + "id": 2616388040, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjM4ODA0MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616388040", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T19:48:52Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/136", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/136/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/136/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/136/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/136", + "id": 490673489, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjIwNTk2", + "number": 136, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T19:48:51Z", + "updated_at": "2019-09-07T19:48:52Z", + "closed_at": "2019-09-07T19:48:52Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/136", + "html_url": "https://github.com/github-api-test-org/github-api/pull/136", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/136.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/136.patch" + }, + "body": "## test" + } + }, + { + "id": 2615995734, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE1OTk1NzM0", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995734", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:47:03Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/135", + "id": 490591319, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NTAz", + "number": 135, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:46:59Z", + "updated_at": "2019-09-07T04:47:03Z", + "closed_at": "2019-09-07T04:47:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/135", + "html_url": "https://github.com/github-api-test-org/github-api/pull/135", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/135.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/135.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615995728, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NTcyOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995728", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:47:02Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/135", + "id": 490591319, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NTAz", + "number": 135, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:46:59Z", + "updated_at": "2019-09-07T04:47:03Z", + "closed_at": "2019-09-07T04:47:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/135", + "html_url": "https://github.com/github-api-test-org/github-api/pull/135", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/135.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/135.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615995725, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNTk5NTcyNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995725", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "merged", + "commit_id": "e6c3619a8e558975a29fb7dbd7ae7fe549c2b514", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/e6c3619a8e558975a29fb7dbd7ae7fe549c2b514", + "created_at": "2019-09-07T04:47:01Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/135", + "id": 490591319, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NTAz", + "number": 135, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:46:59Z", + "updated_at": "2019-09-07T04:47:03Z", + "closed_at": "2019-09-07T04:47:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/135", + "html_url": "https://github.com/github-api-test-org/github-api/pull/135", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/135.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/135.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615995724, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTU5OTU3MjQ=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995724", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "referenced", + "commit_id": "e6c3619a8e558975a29fb7dbd7ae7fe549c2b514", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/e6c3619a8e558975a29fb7dbd7ae7fe549c2b514", + "created_at": "2019-09-07T04:47:01Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/135/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/135", + "id": 490591319, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NTAz", + "number": 135, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:46:59Z", + "updated_at": "2019-09-07T04:47:03Z", + "closed_at": "2019-09-07T04:47:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/135", + "html_url": "https://github.com/github-api-test-org/github-api/pull/135", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/135.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/135.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615995531, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE1OTk1NTMx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995531", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:46:21Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/134", + "id": 490591276, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NDcx", + "number": 134, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:46:17Z", + "updated_at": "2019-09-07T04:46:21Z", + "closed_at": "2019-09-07T04:46:20Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/134", + "html_url": "https://github.com/github-api-test-org/github-api/pull/134", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/134.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/134.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615995524, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NTUyNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995524", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:46:20Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/134", + "id": 490591276, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NDcx", + "number": 134, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:46:17Z", + "updated_at": "2019-09-07T04:46:21Z", + "closed_at": "2019-09-07T04:46:20Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/134", + "html_url": "https://github.com/github-api-test-org/github-api/pull/134", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/134.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/134.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615995521, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNTk5NTUyMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995521", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "merged", + "commit_id": "c1099490b4543f34ae55cd3a57192f55054ed174", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/c1099490b4543f34ae55cd3a57192f55054ed174", + "created_at": "2019-09-07T04:46:19Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/134", + "id": 490591276, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NDcx", + "number": 134, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:46:17Z", + "updated_at": "2019-09-07T04:46:21Z", + "closed_at": "2019-09-07T04:46:20Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/134", + "html_url": "https://github.com/github-api-test-org/github-api/pull/134", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/134.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/134.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615995520, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTU5OTU1MjA=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995520", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "referenced", + "commit_id": "c1099490b4543f34ae55cd3a57192f55054ed174", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/c1099490b4543f34ae55cd3a57192f55054ed174", + "created_at": "2019-09-07T04:46:19Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/134/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/134", + "id": 490591276, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NDcx", + "number": 134, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:46:17Z", + "updated_at": "2019-09-07T04:46:21Z", + "closed_at": "2019-09-07T04:46:20Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/134", + "html_url": "https://github.com/github-api-test-org/github-api/pull/134", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/134.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/134.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615995259, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE1OTk1MjU5", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995259", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:45:30Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/119", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/119/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/119/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/119/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/119", + "id": 490590924, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2MjIy", + "number": 119, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:41:21Z", + "updated_at": "2019-09-07T04:45:30Z", + "closed_at": "2019-09-07T04:44:30Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/119", + "html_url": "https://github.com/github-api-test-org/github-api/pull/119", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/119.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/119.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615995211, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NTIxMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995211", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:45:21Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/133", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/133/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/133/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/133/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/133", + "id": 490591197, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NDE1", + "number": 133, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:45:20Z", + "updated_at": "2019-09-07T04:45:21Z", + "closed_at": "2019-09-07T04:45:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/133", + "html_url": "https://github.com/github-api-test-org/github-api/pull/133", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/133.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/133.patch" + }, + "body": "## test" + } + }, + { + "id": 2615995204, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NTIwNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995204", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:45:18Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/132", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/132/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/132/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/132/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/132", + "id": 490591193, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NDEy", + "number": 132, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:45:15Z", + "updated_at": "2019-09-07T04:45:18Z", + "closed_at": "2019-09-07T04:45:18Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/132", + "html_url": "https://github.com/github-api-test-org/github-api/pull/132", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/132.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/132.patch" + }, + "body": "## test" + } + }, + { + "id": 2615995195, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE1OTk1MTk1", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995195", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:45:16Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/132", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/132/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/132/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/132/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/132", + "id": 490591193, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NDEy", + "number": 132, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:45:15Z", + "updated_at": "2019-09-07T04:45:18Z", + "closed_at": "2019-09-07T04:45:18Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/132", + "html_url": "https://github.com/github-api-test-org/github-api/pull/132", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/132.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/132.patch" + }, + "body": "## test" + } + }, + { + "id": 2615995182, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NTE4Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995182", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:45:14Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/131", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/131/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/131/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/131/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/131", + "id": 490591188, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NDA5", + "number": 131, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T04:45:12Z", + "updated_at": "2019-09-07T04:45:14Z", + "closed_at": "2019-09-07T04:45:14Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/131", + "html_url": "https://github.com/github-api-test-org/github-api/pull/131", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/131.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/131.patch" + }, + "body": "## test" + } + }, + { + "id": 2615995166, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NTE2Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995166", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:45:11Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/129", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/129/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/129/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/129/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/129", + "id": 490591180, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NDAz", + "number": 129, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:45:07Z", + "updated_at": "2019-09-07T04:45:11Z", + "closed_at": "2019-09-07T04:45:11Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/129", + "html_url": "https://github.com/github-api-test-org/github-api/pull/129", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/129.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/129.patch" + }, + "body": null + } + }, + { + "id": 2615995157, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NTE1Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995157", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:45:10Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/130", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/130/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/130/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/130/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/130", + "id": 490591184, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2NDA2", + "number": 130, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:45:08Z", + "updated_at": "2019-09-07T04:45:10Z", + "closed_at": "2019-09-07T04:45:10Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/130", + "html_url": "https://github.com/github-api-test-org/github-api/pull/130", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/130.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/130.patch" + }, + "body": null + } + }, + { + "id": 2615995134, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE1OTk1MTM0", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995134", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:45:07Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/128", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/128/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/128/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/128/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/128", + "id": 490591171, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2Mzk5", + "number": 128, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:45:02Z", + "updated_at": "2019-09-07T04:45:07Z", + "closed_at": "2019-09-07T04:45:05Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/128", + "html_url": "https://github.com/github-api-test-org/github-api/pull/128", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/128.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/128.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615995125, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NTEyNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995125", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:45:05Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/128", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/128/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/128/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/128/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/128", + "id": 490591171, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2Mzk5", + "number": 128, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:45:02Z", + "updated_at": "2019-09-07T04:45:07Z", + "closed_at": "2019-09-07T04:45:05Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/128", + "html_url": "https://github.com/github-api-test-org/github-api/pull/128", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/128.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/128.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615995077, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NTA3Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995077", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:44:57Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/127", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/127/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/127/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/127/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/127", + "id": 490591160, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2Mzky", + "number": 127, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:44:53Z", + "updated_at": "2019-09-07T04:44:57Z", + "closed_at": "2019-09-07T04:44:57Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/127", + "html_url": "https://github.com/github-api-test-org/github-api/pull/127", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/127.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/127.patch" + }, + "body": "## test" + } + }, + { + "id": 2615995035, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NTAzNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995035", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:44:52Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/126", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/126/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/126/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/126/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/126", + "id": 490591154, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2Mzg3", + "number": 126, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:44:48Z", + "updated_at": "2019-09-07T04:44:52Z", + "closed_at": "2019-09-07T04:44:52Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/126", + "html_url": "https://github.com/github-api-test-org/github-api/pull/126", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/126.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/126.patch" + }, + "body": "## test" + } + }, + { + "id": 2615995016, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NTAxNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995016", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:44:46Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/125", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/125/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/125/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/125/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/125", + "id": 490591152, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2Mzg2", + "number": 125, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:44:44Z", + "updated_at": "2019-09-07T04:44:46Z", + "closed_at": "2019-09-07T04:44:46Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/125", + "html_url": "https://github.com/github-api-test-org/github-api/pull/125", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/125.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/125.patch" + }, + "body": "## test" + } + }, + { + "id": 2615995003, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTU5OTUwMDM=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615995003", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:44:44Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/125", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/125/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/125/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/125/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/125", + "id": 490591152, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2Mzg2", + "number": 125, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:44:44Z", + "updated_at": "2019-09-07T04:44:46Z", + "closed_at": "2019-09-07T04:44:46Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/125", + "html_url": "https://github.com/github-api-test-org/github-api/pull/125", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/125.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/125.patch" + }, + "body": "## test" + } + }, + { + "id": 2615994993, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NDk5Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615994993", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:44:43Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/124", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/124/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/124/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/124/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/124", + "id": 490591148, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2Mzgy", + "number": 124, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:44:40Z", + "updated_at": "2019-09-07T04:44:43Z", + "closed_at": "2019-09-07T04:44:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/124", + "html_url": "https://github.com/github-api-test-org/github-api/pull/124", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/124.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/124.patch" + }, + "body": "## test" + } + }, + { + "id": 2615994961, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NDk2MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615994961", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:44:39Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/123", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/123/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/123/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/123/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/123", + "id": 490591146, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2Mzgw", + "number": 123, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:44:38Z", + "updated_at": "2019-09-07T04:44:39Z", + "closed_at": "2019-09-07T04:44:39Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/123", + "html_url": "https://github.com/github-api-test-org/github-api/pull/123", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/123.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/123.patch" + }, + "body": "## test" + } + }, + { + "id": 2615994933, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NDkzMw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615994933", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:44:35Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/121", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/121/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/121/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/121/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/121", + "id": 490591133, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2Mzcw", + "number": 121, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:44:32Z", + "updated_at": "2019-09-07T04:44:34Z", + "closed_at": "2019-09-07T04:44:34Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/121", + "html_url": "https://github.com/github-api-test-org/github-api/pull/121", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/121.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/121.patch" + }, + "body": null + } + }, + { + "id": 2615994926, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NDkyNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615994926", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:44:34Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/122", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/122/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/122/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/122/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/122", + "id": 490591134, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2Mzcx", + "number": 122, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:44:33Z", + "updated_at": "2019-09-07T04:44:34Z", + "closed_at": "2019-09-07T04:44:34Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/122", + "html_url": "https://github.com/github-api-test-org/github-api/pull/122", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/122.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/122.patch" + }, + "body": null + } + }, + { + "id": 2615994902, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NDkwMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615994902", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:44:30Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/119", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/119/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/119/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/119/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/119", + "id": 490590924, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2MjIy", + "number": 119, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:41:21Z", + "updated_at": "2019-09-07T04:45:30Z", + "closed_at": "2019-09-07T04:44:30Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/119", + "html_url": "https://github.com/github-api-test-org/github-api/pull/119", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/119.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/119.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615994896, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5NDg5Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615994896", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:44:30Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/120", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/120/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/120/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/120/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/120", + "id": 490591127, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2MzY2", + "number": 120, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:44:26Z", + "updated_at": "2019-09-07T04:44:30Z", + "closed_at": "2019-09-07T04:44:30Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/120", + "html_url": "https://github.com/github-api-test-org/github-api/pull/120", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/120.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/120.patch" + }, + "body": "## test" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-13dd42c1-51d3-40b5-b921-f99fb4be769a.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-13dd42c1-51d3-40b5-b921-f99fb4be769a.json new file mode 100644 index 000000000..e00633b70 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-13dd42c1-51d3-40b5-b921-f99fb4be769a.json @@ -0,0 +1,2514 @@ +[ + { + "id": 2616568706, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2ODcwNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616568706", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:41:13Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/232", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/232/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/232/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/232/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/232", + "id": 490713554, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NDM5", + "number": 232, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:41:12Z", + "updated_at": "2019-09-08T05:41:13Z", + "closed_at": "2019-09-08T05:41:13Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/232", + "html_url": "https://github.com/github-api-test-org/github-api/pull/232", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/232.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/232.patch" + }, + "body": "## test" + } + }, + { + "id": 2616568637, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2ODYzNw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616568637", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:40:58Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/231", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/231/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/231/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/231/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/231", + "id": 490713543, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NDMy", + "number": 231, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:40:56Z", + "updated_at": "2019-09-08T05:40:58Z", + "closed_at": "2019-09-08T05:40:58Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/231", + "html_url": "https://github.com/github-api-test-org/github-api/pull/231", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/231.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/231.patch" + }, + "body": "## test" + } + }, + { + "id": 2616568464, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2ODQ2NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616568464", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:40:25Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/230", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/230/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/230/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/230/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/230", + "id": 490713512, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NDA5", + "number": 230, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:40:24Z", + "updated_at": "2019-09-08T05:40:25Z", + "closed_at": "2019-09-08T05:40:25Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/230", + "html_url": "https://github.com/github-api-test-org/github-api/pull/230", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/230.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/230.patch" + }, + "body": "## test" + } + }, + { + "id": 2616567718, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2NzcxOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616567718", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:37:41Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/229", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/229/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/229/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/229/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/229", + "id": 490713315, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3MjYw", + "number": 229, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:37:39Z", + "updated_at": "2019-09-08T05:37:40Z", + "closed_at": "2019-09-08T05:37:40Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/229", + "html_url": "https://github.com/github-api-test-org/github-api/pull/229", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/229.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/229.patch" + }, + "body": "## test" + } + }, + { + "id": 2616562491, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2MjQ5MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616562491", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:19:10Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/228", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/228/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/228/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/228/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/228", + "id": 490712141, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ2NDUz", + "number": 228, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:19:07Z", + "updated_at": "2019-09-08T05:19:10Z", + "closed_at": "2019-09-08T05:19:10Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/228", + "html_url": "https://github.com/github-api-test-org/github-api/pull/228", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/228.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/228.patch" + }, + "body": "## test" + } + }, + { + "id": 2616561389, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2MTM4OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616561389", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:15:15Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/227", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/227/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/227/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/227/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/227", + "id": 490711864, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ2MjQ2", + "number": 227, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:15:14Z", + "updated_at": "2019-09-08T05:15:15Z", + "closed_at": "2019-09-08T05:15:15Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/227", + "html_url": "https://github.com/github-api-test-org/github-api/pull/227", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/227.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/227.patch" + }, + "body": "## test" + } + }, + { + "id": 2616560316, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2MDMxNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616560316", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:11:35Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/226", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/226/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/226/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/226/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/226", + "id": 490711580, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ2MDQ4", + "number": 226, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:11:28Z", + "updated_at": "2019-09-08T05:11:35Z", + "closed_at": "2019-09-08T05:11:35Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/226", + "html_url": "https://github.com/github-api-test-org/github-api/pull/226", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/226.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/226.patch" + }, + "body": "## test" + } + }, + { + "id": 2616558325, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU1ODMyNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616558325", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:04:07Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/225", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/225/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/225/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/225/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/225", + "id": 490711082, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ1Njk2", + "number": 225, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:04:01Z", + "updated_at": "2019-09-08T05:04:07Z", + "closed_at": "2019-09-08T05:04:07Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/225", + "html_url": "https://github.com/github-api-test-org/github-api/pull/225", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/225.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/225.patch" + }, + "body": "## test" + } + }, + { + "id": 2616557553, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU1NzU1Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616557553", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:01:36Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/224", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/224/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/224/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/224/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/224", + "id": 490710901, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ1NTcz", + "number": 224, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:01:35Z", + "updated_at": "2019-09-08T05:01:36Z", + "closed_at": "2019-09-08T05:01:36Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/224", + "html_url": "https://github.com/github-api-test-org/github-api/pull/224", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/224.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/224.patch" + }, + "body": "## test" + } + }, + { + "id": 2616557200, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU1NzIwMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616557200", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:00:31Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/223", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/223/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/223/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/223/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/223", + "id": 490710820, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ1NTEw", + "number": 223, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:00:29Z", + "updated_at": "2019-09-08T05:00:31Z", + "closed_at": "2019-09-08T05:00:31Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/223", + "html_url": "https://github.com/github-api-test-org/github-api/pull/223", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/223.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/223.patch" + }, + "body": "## test" + } + }, + { + "id": 2616556835, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU1NjgzNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616556835", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T04:59:21Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/222", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/222/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/222/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/222/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/222", + "id": 490710748, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ1NDYx", + "number": 222, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T04:59:14Z", + "updated_at": "2019-09-08T04:59:21Z", + "closed_at": "2019-09-08T04:59:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/222", + "html_url": "https://github.com/github-api-test-org/github-api/pull/222", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/222.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/222.patch" + }, + "body": "## test" + } + }, + { + "id": 2616554959, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU1NDk1OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616554959", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T04:51:53Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/221", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/221/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/221/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/221/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/221", + "id": 490710339, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ1MTgz", + "number": 221, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T04:51:52Z", + "updated_at": "2019-09-08T04:51:53Z", + "closed_at": "2019-09-08T04:51:53Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/221", + "html_url": "https://github.com/github-api-test-org/github-api/pull/221", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/221.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/221.patch" + }, + "body": "## test" + } + }, + { + "id": 2616554109, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU1NDEwOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616554109", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T04:48:45Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/220", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/220/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/220/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/220/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/220", + "id": 490710130, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ1MDMw", + "number": 220, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T04:48:44Z", + "updated_at": "2019-09-08T04:48:45Z", + "closed_at": "2019-09-08T04:48:45Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/220", + "html_url": "https://github.com/github-api-test-org/github-api/pull/220", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/220.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/220.patch" + }, + "body": "## test" + } + }, + { + "id": 2616553891, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU1Mzg5MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616553891", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T04:47:58Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/219", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/219/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/219/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/219/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/219", + "id": 490710061, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ0OTc3", + "number": 219, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T04:47:41Z", + "updated_at": "2019-09-08T04:47:58Z", + "closed_at": "2019-09-08T04:47:58Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/219", + "html_url": "https://github.com/github-api-test-org/github-api/pull/219", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/219.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/219.patch" + }, + "body": "## test" + } + }, + { + "id": 2616458442, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1ODQ0Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616458442", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:06:52Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/218", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/218/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/218/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/218/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/218", + "id": 490689319, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMjE0", + "number": 218, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:06:50Z", + "updated_at": "2019-09-07T23:06:52Z", + "closed_at": "2019-09-07T23:06:52Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/218", + "html_url": "https://github.com/github-api-test-org/github-api/pull/218", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/218.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/218.patch" + }, + "body": "## test" + } + }, + { + "id": 2616458089, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1ODA4OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616458089", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/217", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/217/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/217/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/217/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/217", + "id": 490689244, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTY4", + "number": 217, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:05:43Z", + "updated_at": "2019-09-07T23:05:44Z", + "closed_at": "2019-09-07T23:05:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/217", + "html_url": "https://github.com/github-api-test-org/github-api/pull/217", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/217.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/217.patch" + }, + "body": "## test" + } + }, + { + "id": 2616458073, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1ODA3Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616458073", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:41Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/216", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/216/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/216/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/216/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/216", + "id": 490689241, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTY2", + "number": 216, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:05:38Z", + "updated_at": "2019-09-07T23:05:41Z", + "closed_at": "2019-09-07T23:05:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/216", + "html_url": "https://github.com/github-api-test-org/github-api/pull/216", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/216.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/216.patch" + }, + "body": "## test" + } + }, + { + "id": 2616458065, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE2NDU4MDY1", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616458065", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:39Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/216", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/216/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/216/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/216/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/216", + "id": 490689241, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTY2", + "number": 216, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:05:38Z", + "updated_at": "2019-09-07T23:05:41Z", + "closed_at": "2019-09-07T23:05:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/216", + "html_url": "https://github.com/github-api-test-org/github-api/pull/216", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/216.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/216.patch" + }, + "body": "## test" + } + }, + { + "id": 2616458054, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1ODA1NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616458054", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:36Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/215", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/215/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/215/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/215/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/215", + "id": 490689231, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTU3", + "number": 215, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T23:05:34Z", + "updated_at": "2019-09-07T23:05:36Z", + "closed_at": "2019-09-07T23:05:36Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/215", + "html_url": "https://github.com/github-api-test-org/github-api/pull/215", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/215.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/215.patch" + }, + "body": "## test" + } + }, + { + "id": 2616458038, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1ODAzOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616458038", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:32Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/214", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/214/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/214/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/214/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/214", + "id": 490689222, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTUw", + "number": 214, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:05:30Z", + "updated_at": "2019-09-07T23:05:32Z", + "closed_at": "2019-09-07T23:05:32Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/214", + "html_url": "https://github.com/github-api-test-org/github-api/pull/214", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/214.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/214.patch" + }, + "body": null + } + }, + { + "id": 2616458034, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1ODAzNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616458034", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:32Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/213", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/213/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/213/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/213/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/213", + "id": 490689220, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTQ5", + "number": 213, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:05:30Z", + "updated_at": "2019-09-07T23:05:32Z", + "closed_at": "2019-09-07T23:05:32Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/213", + "html_url": "https://github.com/github-api-test-org/github-api/pull/213", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/213.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/213.patch" + }, + "body": null + } + }, + { + "id": 2616457993, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Nzk5Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457993", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:24Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/212", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/212/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/212/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/212/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/212", + "id": 490689203, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTM2", + "number": 212, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:05:21Z", + "updated_at": "2019-09-07T23:05:24Z", + "closed_at": "2019-09-07T23:05:24Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/212", + "html_url": "https://github.com/github-api-test-org/github-api/pull/212", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/212.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/212.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457959, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Nzk1OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457959", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:19Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/211", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/211/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/211/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/211/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/211", + "id": 490689195, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTMx", + "number": 211, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:05:16Z", + "updated_at": "2019-09-07T23:05:19Z", + "closed_at": "2019-09-07T23:05:19Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/211", + "html_url": "https://github.com/github-api-test-org/github-api/pull/211", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/211.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/211.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457943, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Nzk0Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457943", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:14Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/210", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/210/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/210/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/210/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/210", + "id": 490689190, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTI3", + "number": 210, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:05:12Z", + "updated_at": "2019-09-07T23:05:14Z", + "closed_at": "2019-09-07T23:05:14Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/210", + "html_url": "https://github.com/github-api-test-org/github-api/pull/210", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/210.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/210.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457934, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTY0NTc5MzQ=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457934", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:12Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/210", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/210/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/210/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/210/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/210", + "id": 490689190, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTI3", + "number": 210, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:05:12Z", + "updated_at": "2019-09-07T23:05:14Z", + "closed_at": "2019-09-07T23:05:14Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/210", + "html_url": "https://github.com/github-api-test-org/github-api/pull/210", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/210.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/210.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457924, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzkyNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457924", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:10Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/209", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/209/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/209/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/209/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/209", + "id": 490689180, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTIw", + "number": 209, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:05:06Z", + "updated_at": "2019-09-07T23:05:10Z", + "closed_at": "2019-09-07T23:05:09Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/209", + "html_url": "https://github.com/github-api-test-org/github-api/pull/209", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/209.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/209.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457897, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Nzg5Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457897", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:05:05Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/208", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/208/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/208/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/208/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/208", + "id": 490689173, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTE0", + "number": 208, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:05:04Z", + "updated_at": "2019-09-07T23:05:05Z", + "closed_at": "2019-09-07T23:05:05Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/208", + "html_url": "https://github.com/github-api-test-org/github-api/pull/208", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/208.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/208.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457872, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Nzg3Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457872", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:58Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/206", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/206/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/206/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/206/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/206", + "id": 490689160, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTAy", + "number": 206, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:55Z", + "updated_at": "2019-09-07T23:04:58Z", + "closed_at": "2019-09-07T23:04:58Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/206", + "html_url": "https://github.com/github-api-test-org/github-api/pull/206", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/206.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/206.patch" + }, + "body": null + } + }, + { + "id": 2616457869, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Nzg2OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457869", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:57Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/207", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/207/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/207/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/207/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/207", + "id": 490689162, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMTAz", + "number": 207, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:56Z", + "updated_at": "2019-09-07T23:04:57Z", + "closed_at": "2019-09-07T23:04:57Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/207", + "html_url": "https://github.com/github-api-test-org/github-api/pull/207", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/207.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/207.patch" + }, + "body": null + } + }, + { + "id": 2616457849, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Nzg0OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457849", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:54Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/205", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/205/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/205/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/205/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/205", + "id": 490689154, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDk2", + "number": 205, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:50Z", + "updated_at": "2019-09-07T23:04:54Z", + "closed_at": "2019-09-07T23:04:54Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/205", + "html_url": "https://github.com/github-api-test-org/github-api/pull/205", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/205.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/205.patch" + }, + "body": "## test" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-28a5a658-444b-46e2-8e6b-f5abcd65269a.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-28a5a658-444b-46e2-8e6b-f5abcd65269a.json new file mode 100644 index 000000000..a94a192a2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-28a5a658-444b-46e2-8e6b-f5abcd65269a.json @@ -0,0 +1,2536 @@ +[ + { + "id": 2616456048, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NjA0OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616456048", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:21Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/184", + "id": 490688718, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzk5", + "number": 184, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:19Z", + "updated_at": "2019-09-07T22:59:22Z", + "closed_at": "2019-09-07T22:59:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/184", + "html_url": "https://github.com/github-api-test-org/github-api/pull/184", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/184.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/184.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616456046, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjQ1NjA0Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616456046", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "merged", + "commit_id": "ae7b0a1fa1f6c471534020fb1587ab4d6e566e91", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/ae7b0a1fa1f6c471534020fb1587ab4d6e566e91", + "created_at": "2019-09-07T22:59:21Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/184", + "id": 490688718, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzk5", + "number": 184, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:19Z", + "updated_at": "2019-09-07T22:59:22Z", + "closed_at": "2019-09-07T22:59:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/184", + "html_url": "https://github.com/github-api-test-org/github-api/pull/184", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/184.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/184.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616456045, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY0NTYwNDU=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616456045", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "referenced", + "commit_id": "ae7b0a1fa1f6c471534020fb1587ab4d6e566e91", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/ae7b0a1fa1f6c471534020fb1587ab4d6e566e91", + "created_at": "2019-09-07T22:59:21Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/184", + "id": 490688718, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzk5", + "number": 184, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:19Z", + "updated_at": "2019-09-07T22:59:22Z", + "closed_at": "2019-09-07T22:59:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/184", + "html_url": "https://github.com/github-api-test-org/github-api/pull/184", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/184.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/184.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616456016, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NjAxNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616456016", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:14Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/183", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/183/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/183/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/183/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/183", + "id": 490688711, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzk0", + "number": 183, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:10Z", + "updated_at": "2019-09-07T22:59:14Z", + "closed_at": "2019-09-07T22:59:14Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/183", + "html_url": "https://github.com/github-api-test-org/github-api/pull/183", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/183.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/183.patch" + }, + "body": "## test" + } + }, + { + "id": 2616455997, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NTk5Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455997", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:09Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/182", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/182/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/182/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/182/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/182", + "id": 490688706, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzkx", + "number": 182, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:06Z", + "updated_at": "2019-09-07T22:59:09Z", + "closed_at": "2019-09-07T22:59:09Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/182", + "html_url": "https://github.com/github-api-test-org/github-api/pull/182", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/182.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/182.patch" + }, + "body": "## test" + } + }, + { + "id": 2616455972, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NTk3Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455972", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:04Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/181", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/181/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/181/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/181/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/181", + "id": 490688702, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzg3", + "number": 181, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:02Z", + "updated_at": "2019-09-07T22:59:04Z", + "closed_at": "2019-09-07T22:59:04Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/181", + "html_url": "https://github.com/github-api-test-org/github-api/pull/181", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/181.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/181.patch" + }, + "body": "## test" + } + }, + { + "id": 2616455958, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTY0NTU5NTg=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455958", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:03Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/181", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/181/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/181/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/181/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/181", + "id": 490688702, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzg3", + "number": 181, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:02Z", + "updated_at": "2019-09-07T22:59:04Z", + "closed_at": "2019-09-07T22:59:04Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/181", + "html_url": "https://github.com/github-api-test-org/github-api/pull/181", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/181.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/181.patch" + }, + "body": "## test" + } + }, + { + "id": 2616455930, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NTkzMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455930", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:00Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/180", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/180/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/180/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/180/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/180", + "id": 490688699, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzg1", + "number": 180, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:58:58Z", + "updated_at": "2019-09-07T22:59:00Z", + "closed_at": "2019-09-07T22:59:00Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/180", + "html_url": "https://github.com/github-api-test-org/github-api/pull/180", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/180.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/180.patch" + }, + "body": "## test" + } + }, + { + "id": 2616455910, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NTkxMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455910", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:58:57Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/179", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/179/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/179/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/179/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/179", + "id": 490688697, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzg0", + "number": 179, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:58:55Z", + "updated_at": "2019-09-07T22:58:56Z", + "closed_at": "2019-09-07T22:58:56Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/179", + "html_url": "https://github.com/github-api-test-org/github-api/pull/179", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/179.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/179.patch" + }, + "body": "## test" + } + }, + { + "id": 2616455902, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NDU1OTAy", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455902", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:58:54Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/178", + "id": 490688690, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzc3", + "number": 178, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:58:51Z", + "updated_at": "2019-09-07T22:58:54Z", + "closed_at": "2019-09-07T22:58:53Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/178", + "html_url": "https://github.com/github-api-test-org/github-api/pull/178", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/178.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/178.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616455900, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NTkwMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455900", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:58:53Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/178", + "id": 490688690, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzc3", + "number": 178, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:58:51Z", + "updated_at": "2019-09-07T22:58:54Z", + "closed_at": "2019-09-07T22:58:53Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/178", + "html_url": "https://github.com/github-api-test-org/github-api/pull/178", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/178.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/178.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616455899, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjQ1NTg5OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455899", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "merged", + "commit_id": "2acbcdb94d592d18858ad88e9a96591e4386fe21", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/2acbcdb94d592d18858ad88e9a96591e4386fe21", + "created_at": "2019-09-07T22:58:53Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/178", + "id": 490688690, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzc3", + "number": 178, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:58:51Z", + "updated_at": "2019-09-07T22:58:54Z", + "closed_at": "2019-09-07T22:58:53Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/178", + "html_url": "https://github.com/github-api-test-org/github-api/pull/178", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/178.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/178.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616455898, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY0NTU4OTg=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455898", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "referenced", + "commit_id": "2acbcdb94d592d18858ad88e9a96591e4386fe21", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/2acbcdb94d592d18858ad88e9a96591e4386fe21", + "created_at": "2019-09-07T22:58:53Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/178/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/178", + "id": 490688690, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzc3", + "number": 178, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:58:51Z", + "updated_at": "2019-09-07T22:58:54Z", + "closed_at": "2019-09-07T22:58:53Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/178", + "html_url": "https://github.com/github-api-test-org/github-api/pull/178", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/178.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/178.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616455812, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NTgxMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455812", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:58:45Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/177", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/177/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/177/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/177/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/177", + "id": 490688676, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzY3", + "number": 177, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:58:42Z", + "updated_at": "2019-09-07T22:58:44Z", + "closed_at": "2019-09-07T22:58:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/177", + "html_url": "https://github.com/github-api-test-org/github-api/pull/177", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/177.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/177.patch" + }, + "body": null + } + }, + { + "id": 2616455810, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NTgxMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455810", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:58:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/176", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/176/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/176/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/176/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/176", + "id": 490688675, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzY2", + "number": 176, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:58:42Z", + "updated_at": "2019-09-07T22:58:44Z", + "closed_at": "2019-09-07T22:58:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/176", + "html_url": "https://github.com/github-api-test-org/github-api/pull/176", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/176.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/176.patch" + }, + "body": null + } + }, + { + "id": 2616455784, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NTc4NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616455784", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:58:40Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/175", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/175/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/175/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/175/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/175", + "id": 490688669, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzYw", + "number": 175, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:58:36Z", + "updated_at": "2019-09-07T22:58:40Z", + "closed_at": "2019-09-07T22:58:40Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/175", + "html_url": "https://github.com/github-api-test-org/github-api/pull/175", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/175.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/175.patch" + }, + "body": "## test" + } + }, + { + "id": 2616453198, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MzE5OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453198", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:50:13Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/174", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/174/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/174/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/174/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/174", + "id": 490688105, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzgw", + "number": 174, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:50:12Z", + "updated_at": "2019-09-07T22:50:13Z", + "closed_at": "2019-09-07T22:50:13Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/174", + "html_url": "https://github.com/github-api-test-org/github-api/pull/174", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/174.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/174.patch" + }, + "body": "## test" + } + }, + { + "id": 2616453185, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MzE4NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453185", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:50:11Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/173", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/173/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/173/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/173/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/173", + "id": 490688099, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzc3", + "number": 173, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:50:09Z", + "updated_at": "2019-09-07T22:50:11Z", + "closed_at": "2019-09-07T22:50:11Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/173", + "html_url": "https://github.com/github-api-test-org/github-api/pull/173", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/173.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/173.patch" + }, + "body": "## test" + } + }, + { + "id": 2616453174, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE2NDUzMTc0", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453174", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:50:10Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/173", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/173/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/173/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/173/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/173", + "id": 490688099, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzc3", + "number": 173, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:50:09Z", + "updated_at": "2019-09-07T22:50:11Z", + "closed_at": "2019-09-07T22:50:11Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/173", + "html_url": "https://github.com/github-api-test-org/github-api/pull/173", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/173.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/173.patch" + }, + "body": "## test" + } + }, + { + "id": 2616453142, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MzE0Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453142", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:50:08Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/172", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/172/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/172/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/172/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/172", + "id": 490688094, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzc0", + "number": 172, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T22:50:06Z", + "updated_at": "2019-09-07T22:50:08Z", + "closed_at": "2019-09-07T22:50:08Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/172", + "html_url": "https://github.com/github-api-test-org/github-api/pull/172", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/172.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/172.patch" + }, + "body": "## test" + } + }, + { + "id": 2616453127, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MzEyNw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453127", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:50:04Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/170", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/170/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/170/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/170/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/170", + "id": 490688082, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzYz", + "number": 170, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:50:01Z", + "updated_at": "2019-09-07T22:50:04Z", + "closed_at": "2019-09-07T22:50:04Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/170", + "html_url": "https://github.com/github-api-test-org/github-api/pull/170", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/170.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/170.patch" + }, + "body": null + } + }, + { + "id": 2616453120, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MzEyMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453120", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:50:04Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/171", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/171/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/171/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/171/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/171", + "id": 490688084, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzY1", + "number": 171, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:50:02Z", + "updated_at": "2019-09-07T22:50:04Z", + "closed_at": "2019-09-07T22:50:04Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/171", + "html_url": "https://github.com/github-api-test-org/github-api/pull/171", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/171.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/171.patch" + }, + "body": null + } + }, + { + "id": 2616453074, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NDUzMDc0", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453074", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:59Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/169", + "id": 490688075, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzU2", + "number": 169, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:56Z", + "updated_at": "2019-09-07T22:49:59Z", + "closed_at": "2019-09-07T22:49:58Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/169", + "html_url": "https://github.com/github-api-test-org/github-api/pull/169", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/169.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/169.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616453066, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MzA2Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453066", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:58Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/169", + "id": 490688075, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzU2", + "number": 169, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:56Z", + "updated_at": "2019-09-07T22:49:59Z", + "closed_at": "2019-09-07T22:49:58Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/169", + "html_url": "https://github.com/github-api-test-org/github-api/pull/169", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/169.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/169.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616453064, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjQ1MzA2NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453064", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "merged", + "commit_id": "0ccc6d19a336437d42b7dea45ffe7800151335ec", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/0ccc6d19a336437d42b7dea45ffe7800151335ec", + "created_at": "2019-09-07T22:49:58Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/169", + "id": 490688075, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzU2", + "number": 169, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:56Z", + "updated_at": "2019-09-07T22:49:59Z", + "closed_at": "2019-09-07T22:49:58Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/169", + "html_url": "https://github.com/github-api-test-org/github-api/pull/169", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/169.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/169.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616453063, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY0NTMwNjM=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453063", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "referenced", + "commit_id": "0ccc6d19a336437d42b7dea45ffe7800151335ec", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/0ccc6d19a336437d42b7dea45ffe7800151335ec", + "created_at": "2019-09-07T22:49:58Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/169/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/169", + "id": 490688075, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzU2", + "number": 169, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:56Z", + "updated_at": "2019-09-07T22:49:59Z", + "closed_at": "2019-09-07T22:49:58Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/169", + "html_url": "https://github.com/github-api-test-org/github-api/pull/169", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/169.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/169.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616453025, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MzAyNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453025", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:51Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/168", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/168/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/168/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/168/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/168", + "id": 490688067, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzQ5", + "number": 168, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:48Z", + "updated_at": "2019-09-07T22:49:51Z", + "closed_at": "2019-09-07T22:49:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/168", + "html_url": "https://github.com/github-api-test-org/github-api/pull/168", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/168.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/168.patch" + }, + "body": "## test" + } + }, + { + "id": 2616453014, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MzAxNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616453014", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:47Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/167", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/167/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/167/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/167/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/167", + "id": 490688059, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzQ0", + "number": 167, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:43Z", + "updated_at": "2019-09-07T22:49:47Z", + "closed_at": "2019-09-07T22:49:47Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/167", + "html_url": "https://github.com/github-api-test-org/github-api/pull/167", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/167.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/167.patch" + }, + "body": "## test" + } + }, + { + "id": 2616452996, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Mjk5Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452996", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:42Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/166", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/166/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/166/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/166/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/166", + "id": 490688055, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzQx", + "number": 166, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:39Z", + "updated_at": "2019-09-07T22:49:42Z", + "closed_at": "2019-09-07T22:49:42Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/166", + "html_url": "https://github.com/github-api-test-org/github-api/pull/166", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/166.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/166.patch" + }, + "body": "## test" + } + }, + { + "id": 2616452984, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTY0NTI5ODQ=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452984", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:40Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/166", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/166/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/166/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/166/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/166", + "id": 490688055, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzQx", + "number": 166, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:39Z", + "updated_at": "2019-09-07T22:49:42Z", + "closed_at": "2019-09-07T22:49:42Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/166", + "html_url": "https://github.com/github-api-test-org/github-api/pull/166", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/166.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/166.patch" + }, + "body": "## test" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-28bf30e8-7f42-4162-b82e-32ceb6a08384.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-28bf30e8-7f42-4162-b82e-32ceb6a08384.json new file mode 100644 index 000000000..d6ebdcff4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-28bf30e8-7f42-4162-b82e-32ceb6a08384.json @@ -0,0 +1,2634 @@ +[ + { + "id": 2615993779, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5Mzc3OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615993779", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:41:15Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/117", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/117/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/117/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/117/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/117", + "id": 490590912, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2MjE0", + "number": 117, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:41:12Z", + "updated_at": "2019-09-07T04:41:15Z", + "closed_at": "2019-09-07T04:41:15Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/117", + "html_url": "https://github.com/github-api-test-org/github-api/pull/117", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/117.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/117.patch" + }, + "body": null + } + }, + { + "id": 2615993766, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5Mzc2Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615993766", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:41:14Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/118", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/118/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/118/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/118/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/118", + "id": 490590913, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2MjE1", + "number": 118, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:41:13Z", + "updated_at": "2019-09-07T04:41:14Z", + "closed_at": "2019-09-07T04:41:14Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/118", + "html_url": "https://github.com/github-api-test-org/github-api/pull/118", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/118.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/118.patch" + }, + "body": null + } + }, + { + "id": 2615993711, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5MzcxMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615993711", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:41:11Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/116", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/116/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/116/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/116/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/116", + "id": 490590904, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2MjA5", + "number": 116, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:41:06Z", + "updated_at": "2019-09-07T04:41:11Z", + "closed_at": "2019-09-07T04:41:11Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/116", + "html_url": "https://github.com/github-api-test-org/github-api/pull/116", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/116.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/116.patch" + }, + "body": "## test" + } + }, + { + "id": 2615992899, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk5Mjg5OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615992899", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:39:04Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/115", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/115/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/115/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/115/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/115", + "id": 490590763, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY2MTE1", + "number": 115, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:39:00Z", + "updated_at": "2019-09-07T04:39:04Z", + "closed_at": "2019-09-07T04:39:04Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/115", + "html_url": "https://github.com/github-api-test-org/github-api/pull/115", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/115.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/115.patch" + }, + "body": "## test" + } + }, + { + "id": 2615989271, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4OTI3MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989271", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:30:01Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/114", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/114/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/114/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/114/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/114", + "id": 490590156, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NzAz", + "number": 114, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:59Z", + "updated_at": "2019-09-07T04:30:01Z", + "closed_at": "2019-09-07T04:30:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/114", + "html_url": "https://github.com/github-api-test-org/github-api/pull/114", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/114.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/114.patch" + }, + "body": "## test" + } + }, + { + "id": 2615989252, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4OTI1Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989252", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:58Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/113", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/113/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/113/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/113/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/113", + "id": 490590153, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NzAy", + "number": 113, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:55Z", + "updated_at": "2019-09-07T04:29:57Z", + "closed_at": "2019-09-07T04:29:57Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/113", + "html_url": "https://github.com/github-api-test-org/github-api/pull/113", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/113.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/113.patch" + }, + "body": "## test" + } + }, + { + "id": 2615989238, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE1OTg5MjM4", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989238", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:56Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/113", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/113/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/113/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/113/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/113", + "id": 490590153, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NzAy", + "number": 113, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:55Z", + "updated_at": "2019-09-07T04:29:57Z", + "closed_at": "2019-09-07T04:29:57Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/113", + "html_url": "https://github.com/github-api-test-org/github-api/pull/113", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/113.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/113.patch" + }, + "body": "## test" + } + }, + { + "id": 2615989226, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4OTIyNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989226", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:54Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/112", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/112/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/112/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/112/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/112", + "id": 490590145, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1Njk5", + "number": 112, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T04:29:52Z", + "updated_at": "2019-09-07T04:29:54Z", + "closed_at": "2019-09-07T04:29:54Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/112", + "html_url": "https://github.com/github-api-test-org/github-api/pull/112", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/112.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/112.patch" + }, + "body": "## test" + } + }, + { + "id": 2615989204, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4OTIwNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989204", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:51Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/111", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/111/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/111/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/111/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/111", + "id": 490590138, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1Njk1", + "number": 111, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:48Z", + "updated_at": "2019-09-07T04:29:51Z", + "closed_at": "2019-09-07T04:29:50Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/111", + "html_url": "https://github.com/github-api-test-org/github-api/pull/111", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/111.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/111.patch" + }, + "body": null + } + }, + { + "id": 2615989198, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4OTE5OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989198", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:50Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/110", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/110/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/110/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/110/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/110", + "id": 490590136, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1Njk0", + "number": 110, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:48Z", + "updated_at": "2019-09-07T04:29:50Z", + "closed_at": "2019-09-07T04:29:50Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/110", + "html_url": "https://github.com/github-api-test-org/github-api/pull/110", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/110.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/110.patch" + }, + "body": null + } + }, + { + "id": 2615989151, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE1OTg5MTUx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989151", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:46Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/109", + "id": 490590130, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1Njkw", + "number": 109, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:42Z", + "updated_at": "2019-09-07T04:29:46Z", + "closed_at": "2019-09-07T04:29:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/109", + "html_url": "https://github.com/github-api-test-org/github-api/pull/109", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/109.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/109.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615989144, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4OTE0NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989144", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/109", + "id": 490590130, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1Njkw", + "number": 109, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:42Z", + "updated_at": "2019-09-07T04:29:46Z", + "closed_at": "2019-09-07T04:29:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/109", + "html_url": "https://github.com/github-api-test-org/github-api/pull/109", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/109.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/109.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615989143, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNTk4OTE0Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989143", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "merged", + "commit_id": "99365864dfba9bc89cb4f34b3e0681b7ea4834b8", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/99365864dfba9bc89cb4f34b3e0681b7ea4834b8", + "created_at": "2019-09-07T04:29:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/109", + "id": 490590130, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1Njkw", + "number": 109, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:42Z", + "updated_at": "2019-09-07T04:29:46Z", + "closed_at": "2019-09-07T04:29:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/109", + "html_url": "https://github.com/github-api-test-org/github-api/pull/109", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/109.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/109.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615989142, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTU5ODkxNDI=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989142", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "referenced", + "commit_id": "99365864dfba9bc89cb4f34b3e0681b7ea4834b8", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/99365864dfba9bc89cb4f34b3e0681b7ea4834b8", + "created_at": "2019-09-07T04:29:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/109/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/109", + "id": 490590130, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1Njkw", + "number": 109, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:42Z", + "updated_at": "2019-09-07T04:29:46Z", + "closed_at": "2019-09-07T04:29:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/109", + "html_url": "https://github.com/github-api-test-org/github-api/pull/109", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/109.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/109.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615989086, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4OTA4Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989086", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:37Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/108", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/108/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/108/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/108/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/108", + "id": 490590117, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1Njgy", + "number": 108, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:34Z", + "updated_at": "2019-09-07T04:29:37Z", + "closed_at": "2019-09-07T04:29:37Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/108", + "html_url": "https://github.com/github-api-test-org/github-api/pull/108", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/108.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/108.patch" + }, + "body": "## test" + } + }, + { + "id": 2615989064, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4OTA2NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989064", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:32Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/107", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/107/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/107/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/107/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/107", + "id": 490590111, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1Njc3", + "number": 107, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:28Z", + "updated_at": "2019-09-07T04:29:32Z", + "closed_at": "2019-09-07T04:29:32Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/107", + "html_url": "https://github.com/github-api-test-org/github-api/pull/107", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/107.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/107.patch" + }, + "body": "## test" + } + }, + { + "id": 2615989039, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4OTAzOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989039", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:27Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/106", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/106/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/106/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/106/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/106", + "id": 490590105, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1Njcx", + "number": 106, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:25Z", + "updated_at": "2019-09-07T04:29:27Z", + "closed_at": "2019-09-07T04:29:27Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/106", + "html_url": "https://github.com/github-api-test-org/github-api/pull/106", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/106.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/106.patch" + }, + "body": "## test" + } + }, + { + "id": 2615989030, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTU5ODkwMzA=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989030", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:25Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/106", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/106/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/106/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/106/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/106", + "id": 490590105, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1Njcx", + "number": 106, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:25Z", + "updated_at": "2019-09-07T04:29:27Z", + "closed_at": "2019-09-07T04:29:27Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/106", + "html_url": "https://github.com/github-api-test-org/github-api/pull/106", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/106.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/106.patch" + }, + "body": "## test" + } + }, + { + "id": 2615989016, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4OTAxNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615989016", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:23Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/105", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/105/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/105/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/105/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/105", + "id": 490590100, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NjY4", + "number": 105, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:20Z", + "updated_at": "2019-09-07T04:29:23Z", + "closed_at": "2019-09-07T04:29:23Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/105", + "html_url": "https://github.com/github-api-test-org/github-api/pull/105", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/105.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/105.patch" + }, + "body": "## test" + } + }, + { + "id": 2615988992, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4ODk5Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615988992", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:19Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/104", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/104/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/104/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/104/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/104", + "id": 490590094, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NjY0", + "number": 104, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:18Z", + "updated_at": "2019-09-07T04:29:19Z", + "closed_at": "2019-09-07T04:29:19Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/104", + "html_url": "https://github.com/github-api-test-org/github-api/pull/104", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/104.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/104.patch" + }, + "body": "## test" + } + }, + { + "id": 2615988979, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE1OTg4OTc5", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615988979", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:17Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/103", + "id": 490590087, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NjYx", + "number": 103, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:13Z", + "updated_at": "2019-09-07T04:29:17Z", + "closed_at": "2019-09-07T04:29:15Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/103", + "html_url": "https://github.com/github-api-test-org/github-api/pull/103", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/103.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/103.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615988969, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4ODk2OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615988969", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:15Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/103", + "id": 490590087, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NjYx", + "number": 103, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:13Z", + "updated_at": "2019-09-07T04:29:17Z", + "closed_at": "2019-09-07T04:29:15Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/103", + "html_url": "https://github.com/github-api-test-org/github-api/pull/103", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/103.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/103.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615988968, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNTk4ODk2OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615988968", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "merged", + "commit_id": "7155970f95dc1e9af20607ac01eb7e9b99f0ae03", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/7155970f95dc1e9af20607ac01eb7e9b99f0ae03", + "created_at": "2019-09-07T04:29:15Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/103", + "id": 490590087, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NjYx", + "number": 103, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:13Z", + "updated_at": "2019-09-07T04:29:17Z", + "closed_at": "2019-09-07T04:29:15Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/103", + "html_url": "https://github.com/github-api-test-org/github-api/pull/103", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/103.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/103.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615988967, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTU5ODg5Njc=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615988967", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "referenced", + "commit_id": "7155970f95dc1e9af20607ac01eb7e9b99f0ae03", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/7155970f95dc1e9af20607ac01eb7e9b99f0ae03", + "created_at": "2019-09-07T04:29:15Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/103/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/103", + "id": 490590087, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NjYx", + "number": 103, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:13Z", + "updated_at": "2019-09-07T04:29:17Z", + "closed_at": "2019-09-07T04:29:15Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/103", + "html_url": "https://github.com/github-api-test-org/github-api/pull/103", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/103.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/103.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615988902, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4ODkwMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615988902", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:06Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/101", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/101/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/101/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/101/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/101", + "id": 490590076, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NjUx", + "number": 101, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:04Z", + "updated_at": "2019-09-07T04:29:06Z", + "closed_at": "2019-09-07T04:29:06Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/101", + "html_url": "https://github.com/github-api-test-org/github-api/pull/101", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/101.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/101.patch" + }, + "body": null + } + }, + { + "id": 2615988895, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4ODg5NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615988895", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:06Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/102", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/102/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/102/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/102/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/102", + "id": 490590078, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NjUz", + "number": 102, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:29:05Z", + "updated_at": "2019-09-07T04:29:06Z", + "closed_at": "2019-09-07T04:29:06Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/102", + "html_url": "https://github.com/github-api-test-org/github-api/pull/102", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/102.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/102.patch" + }, + "body": null + } + }, + { + "id": 2615988867, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4ODg2Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615988867", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:29:02Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/100", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/100/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/100/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/100/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/100", + "id": 490590073, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NjQ4", + "number": 100, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:28:58Z", + "updated_at": "2019-09-07T04:29:02Z", + "closed_at": "2019-09-07T04:29:02Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/100", + "html_url": "https://github.com/github-api-test-org/github-api/pull/100", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/100.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/100.patch" + }, + "body": "## test" + } + }, + { + "id": 2615983693, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzY5Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983693", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:25:09Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/99", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/99/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/99/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/99/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/99", + "id": 490589840, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDc4", + "number": 99, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:25:08Z", + "updated_at": "2019-09-07T04:25:09Z", + "closed_at": "2019-09-07T04:25:09Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/99", + "html_url": "https://github.com/github-api-test-org/github-api/pull/99", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/99.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/99.patch" + }, + "body": "## test" + } + }, + { + "id": 2615983668, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzY2OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983668", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:25:06Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/98", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/98/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/98/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/98/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/98", + "id": 490589834, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDc1", + "number": 98, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:25:03Z", + "updated_at": "2019-09-07T04:25:05Z", + "closed_at": "2019-09-07T04:25:05Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/98", + "html_url": "https://github.com/github-api-test-org/github-api/pull/98", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/98.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/98.patch" + }, + "body": "## test" + } + }, + { + "id": 2615983655, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE1OTgzNjU1", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983655", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:25:04Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/98", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/98/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/98/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/98/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/98", + "id": 490589834, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDc1", + "number": 98, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:25:03Z", + "updated_at": "2019-09-07T04:25:05Z", + "closed_at": "2019-09-07T04:25:05Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/98", + "html_url": "https://github.com/github-api-test-org/github-api/pull/98", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/98.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/98.patch" + }, + "body": "## test" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-50930d32-3438-48b2-be82-99d03bd48eab.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-50930d32-3438-48b2-be82-99d03bd48eab.json new file mode 100644 index 000000000..5815e72f1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-50930d32-3438-48b2-be82-99d03bd48eab.json @@ -0,0 +1,2372 @@ +[ + { + "id": 2615976286, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjI4Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976286", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:03:51Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/45", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/45/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/45/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/45/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/45", + "id": 490588126, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzA4", + "number": 45, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:03:48Z", + "updated_at": "2019-09-07T04:03:51Z", + "closed_at": "2019-09-07T04:03:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/45", + "html_url": "https://github.com/github-api-test-org/github-api/pull/45", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/45.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/45.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976267, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjI2Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976267", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:03:46Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/44", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/44/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/44/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/44/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/44", + "id": 490588123, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzA2", + "number": 44, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:03:45Z", + "updated_at": "2019-09-07T04:03:46Z", + "closed_at": "2019-09-07T04:03:46Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/44", + "html_url": "https://github.com/github-api-test-org/github-api/pull/44", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/44.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/44.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976232, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjIzMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976232", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:03:42Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/43", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/43/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/43/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/43/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/43", + "id": 490588112, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0Mjk4", + "number": 43, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:03:39Z", + "updated_at": "2019-09-07T04:03:41Z", + "closed_at": "2019-09-07T04:03:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/43", + "html_url": "https://github.com/github-api-test-org/github-api/pull/43", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/43.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/43.patch" + }, + "body": null + } + }, + { + "id": 2615976230, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjIzMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976230", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:03:41Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/42", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/42/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/42/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/42/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/42", + "id": 490588111, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0Mjk3", + "number": 42, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:03:39Z", + "updated_at": "2019-09-07T04:03:41Z", + "closed_at": "2019-09-07T04:03:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/42", + "html_url": "https://github.com/github-api-test-org/github-api/pull/42", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/42.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/42.patch" + }, + "body": null + } + }, + { + "id": 2615976211, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjIxMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976211", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:03:37Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/41", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/41/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/41/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/41/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/41", + "id": 490588104, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0Mjkx", + "number": 41, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:03:33Z", + "updated_at": "2019-09-07T04:03:37Z", + "closed_at": "2019-09-07T04:03:37Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/41", + "html_url": "https://github.com/github-api-test-org/github-api/pull/41", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/41.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/41.patch" + }, + "body": "## test" + } + }, + { + "id": 2615974567, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NDU2Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615974567", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T03:59:31Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/40", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/40/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/40/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/40/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/40", + "id": 490587778, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MDQx", + "number": 40, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T03:59:27Z", + "updated_at": "2019-09-07T03:59:31Z", + "closed_at": "2019-09-07T03:59:31Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/40", + "html_url": "https://github.com/github-api-test-org/github-api/pull/40", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/40.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/40.patch" + }, + "body": "## test" + } + }, + { + "id": 2615973483, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3MzQ4Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615973483", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T03:56:11Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/39", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/39/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/39/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/39/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/39", + "id": 490587553, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTYzODc5", + "number": 39, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T03:56:07Z", + "updated_at": "2019-09-07T03:56:11Z", + "closed_at": "2019-09-07T03:56:11Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/39", + "html_url": "https://github.com/github-api-test-org/github-api/pull/39", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/39.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/39.patch" + }, + "body": "## test" + } + }, + { + "id": 2615971340, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3MTM0MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615971340", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T03:49:51Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/37", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/37/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/37/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/37/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/37", + "id": 490587122, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTYzNTc2", + "number": 37, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T03:49:48Z", + "updated_at": "2019-09-07T03:49:51Z", + "closed_at": "2019-09-07T03:49:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/37", + "html_url": "https://github.com/github-api-test-org/github-api/pull/37", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/37.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/37.patch" + }, + "body": null + } + }, + { + "id": 2615971331, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3MTMzMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615971331", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T03:49:50Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/38", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/38/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/38/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/38/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/38", + "id": 490587124, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTYzNTc4", + "number": 38, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T03:49:49Z", + "updated_at": "2019-09-07T03:49:50Z", + "closed_at": "2019-09-07T03:49:50Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/38", + "html_url": "https://github.com/github-api-test-org/github-api/pull/38", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/38.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/38.patch" + }, + "body": null + } + }, + { + "id": 2615970823, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3MDgyMw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615970823", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T03:48:18Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/34", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/34/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/34/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/34/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/34", + "id": 490581354, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU5NTIz", + "number": 34, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T02:32:03Z", + "updated_at": "2019-09-07T03:48:18Z", + "closed_at": "2019-09-07T03:48:18Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/34", + "html_url": "https://github.com/github-api-test-org/github-api/pull/34", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/34.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/34.patch" + }, + "body": null + } + }, + { + "id": 2615970819, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3MDgxOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615970819", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T03:48:17Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/35", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/35/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/35/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/35/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/35", + "id": 490581356, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU5NTI1", + "number": 35, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T02:32:04Z", + "updated_at": "2019-09-07T03:48:17Z", + "closed_at": "2019-09-07T03:48:17Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/35", + "html_url": "https://github.com/github-api-test-org/github-api/pull/35", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/35.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/35.patch" + }, + "body": null + } + }, + { + "id": 2615970815, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3MDgxNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615970815", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T03:48:17Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/36", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/36/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/36/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/36/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/36", + "id": 490581364, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU5NTMx", + "number": 36, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T02:32:07Z", + "updated_at": "2019-09-07T03:48:17Z", + "closed_at": "2019-09-07T03:48:17Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/36", + "html_url": "https://github.com/github-api-test-org/github-api/pull/36", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/36.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/36.patch" + }, + "body": "## test" + } + }, + { + "id": 2615942486, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk0MjQ4Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615942486", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T02:32:02Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/33", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/33/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/33/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/33/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/33", + "id": 490581347, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU5NTE4", + "number": 33, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T02:31:58Z", + "updated_at": "2019-09-07T02:32:02Z", + "closed_at": "2019-09-07T02:32:02Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/33", + "html_url": "https://github.com/github-api-test-org/github-api/pull/33", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/33.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/33.patch" + }, + "body": "## test" + } + }, + { + "id": 2615942311, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk0MjMxMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615942311", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T02:31:30Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/32", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/32/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/32/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/32/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/32", + "id": 490581141, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU5Mzgy", + "number": 32, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T02:29:22Z", + "updated_at": "2019-09-07T02:31:30Z", + "closed_at": "2019-09-07T02:31:30Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/32", + "html_url": "https://github.com/github-api-test-org/github-api/pull/32", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/32.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/32.patch" + }, + "body": "## test" + } + }, + { + "id": 2615942310, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk0MjMxMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615942310", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T02:31:30Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/31", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/31/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/31/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/31/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/31", + "id": 490581132, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU5Mzc1", + "number": 31, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T02:29:19Z", + "updated_at": "2019-09-07T02:31:30Z", + "closed_at": "2019-09-07T02:31:30Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/31", + "html_url": "https://github.com/github-api-test-org/github-api/pull/31", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/31.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/31.patch" + }, + "body": null + } + }, + { + "id": 2615942309, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk0MjMwOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615942309", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T02:31:30Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/30", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/30/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/30/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/30/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/30", + "id": 490581131, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU5Mzc0", + "number": 30, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T02:29:18Z", + "updated_at": "2019-09-07T02:31:30Z", + "closed_at": "2019-09-07T02:31:30Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/30", + "html_url": "https://github.com/github-api-test-org/github-api/pull/30", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/30.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/30.patch" + }, + "body": null + } + }, + { + "id": 2615941478, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk0MTQ3OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615941478", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T02:29:17Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/28", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/28/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/28/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/28/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/28", + "id": 490580930, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU5MjQ1", + "number": 28, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T02:26:38Z", + "updated_at": "2019-09-07T02:29:17Z", + "closed_at": "2019-09-07T02:29:17Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/28", + "html_url": "https://github.com/github-api-test-org/github-api/pull/28", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/28.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/28.patch" + }, + "body": "## test" + } + }, + { + "id": 2615941475, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk0MTQ3NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615941475", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T02:29:16Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/29", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/29/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/29/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/29/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/29", + "id": 490581010, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU5MzA4", + "number": 29, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T02:27:44Z", + "updated_at": "2019-09-07T02:29:16Z", + "closed_at": "2019-09-07T02:29:16Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/29", + "html_url": "https://github.com/github-api-test-org/github-api/pull/29", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/29.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/29.patch" + }, + "body": "## test" + } + }, + { + "id": 2615940330, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk0MDMzMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615940330", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T02:26:05Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/27", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/27/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/27/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/27/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/27", + "id": 490580882, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU5MjEw", + "number": 27, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T02:26:04Z", + "updated_at": "2019-09-07T02:26:05Z", + "closed_at": "2019-09-07T02:26:05Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/27", + "html_url": "https://github.com/github-api-test-org/github-api/pull/27", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/27.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/27.patch" + }, + "body": "## test" + } + }, + { + "id": 2615924076, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTkyNDA3Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615924076", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T01:46:40Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/26", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/26/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/26/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/26/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/26", + "id": 490577402, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU2OTUx", + "number": 26, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T01:46:38Z", + "updated_at": "2019-09-07T01:46:40Z", + "closed_at": "2019-09-07T01:46:40Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/26", + "html_url": "https://github.com/github-api-test-org/github-api/pull/26", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/26.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/26.patch" + }, + "body": "## test" + } + }, + { + "id": 2615923838, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTkyMzgzOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615923838", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T01:46:01Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/25", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/25/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/25/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/25/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/25", + "id": 490577344, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU2OTE5", + "number": 25, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T01:46:00Z", + "updated_at": "2019-09-07T01:46:01Z", + "closed_at": "2019-09-07T01:46:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/25", + "html_url": "https://github.com/github-api-test-org/github-api/pull/25", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/25.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/25.patch" + }, + "body": "## test" + } + }, + { + "id": 2615905493, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTkwNTQ5Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615905493", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T01:08:46Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/24", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/24/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/24/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/24/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/24", + "id": 490573907, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU0NDU3", + "number": 24, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T01:08:44Z", + "updated_at": "2019-09-07T01:08:46Z", + "closed_at": "2019-09-07T01:08:46Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/24", + "html_url": "https://github.com/github-api-test-org/github-api/pull/24", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/24.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/24.patch" + }, + "body": "## test" + } + }, + { + "id": 2615905009, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTkwNTAwOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615905009", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T01:07:59Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/23", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/23/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/23/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/23/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/23", + "id": 490573835, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTU0Mzk4", + "number": 23, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T01:07:58Z", + "updated_at": "2019-09-07T01:07:59Z", + "closed_at": "2019-09-07T01:07:59Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/23", + "html_url": "https://github.com/github-api-test-org/github-api/pull/23", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/23.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/23.patch" + }, + "body": "## test" + } + }, + { + "id": 2615901622, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTkwMTYyMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615901622", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T01:02:01Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/22", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/22/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/22/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/22/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/22", + "id": 490573202, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTUzOTIz", + "number": 22, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T01:01:59Z", + "updated_at": "2019-09-07T01:02:01Z", + "closed_at": "2019-09-07T01:02:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/22", + "html_url": "https://github.com/github-api-test-org/github-api/pull/22", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/22.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/22.patch" + }, + "body": "## test" + } + }, + { + "id": 2615900006, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTkwMDAwNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615900006", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:59:25Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/21", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/21/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/21/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/21/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/21", + "id": 490572877, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTUzNjc3", + "number": 21, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:59:21Z", + "updated_at": "2019-09-07T00:59:25Z", + "closed_at": "2019-09-07T00:59:25Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/21", + "html_url": "https://github.com/github-api-test-org/github-api/pull/21", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/21.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/21.patch" + }, + "body": "## test" + } + }, + { + "id": 2615899537, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg5OTUzNw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615899537", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:58:43Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/20", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/20/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/20/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/20/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/20", + "id": 490572779, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTUzNTky", + "number": 20, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:58:31Z", + "updated_at": "2019-09-07T00:58:43Z", + "closed_at": "2019-09-07T00:58:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/20", + "html_url": "https://github.com/github-api-test-org/github-api/pull/20", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/20.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/20.patch" + }, + "body": "## test" + } + }, + { + "id": 2615898901, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg5ODkwMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615898901", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:57:56Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/19", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/19/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/19/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/19/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/19", + "id": 490572679, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTUzNTIx", + "number": 19, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:57:31Z", + "updated_at": "2019-09-07T00:57:56Z", + "closed_at": "2019-09-07T00:57:56Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/19", + "html_url": "https://github.com/github-api-test-org/github-api/pull/19", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/19.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/19.patch" + }, + "body": "## test" + } + }, + { + "id": 2615891491, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg5MTQ5MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615891491", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:46:41Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/18", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/18/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/18/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/18/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/18", + "id": 490571327, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTUyNDA5", + "number": 18, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:46:33Z", + "updated_at": "2019-09-07T00:46:41Z", + "closed_at": "2019-09-07T00:46:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/18", + "html_url": "https://github.com/github-api-test-org/github-api/pull/18", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/18.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/18.patch" + }, + "body": "## test" + } + }, + { + "id": 2615890429, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg5MDQyOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615890429", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:45:04Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/17", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/17/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/17/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/17/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/17", + "id": 490571037, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTUyMTc0", + "number": 17, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:44:35Z", + "updated_at": "2019-09-07T00:45:04Z", + "closed_at": "2019-09-07T00:45:04Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/17", + "html_url": "https://github.com/github-api-test-org/github-api/pull/17", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/17.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/17.patch" + }, + "body": "## test" + } + }, + { + "id": 2615889526, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg4OTUyNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615889526", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:43:21Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/16", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/16/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/16/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/16/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/16", + "id": 490570289, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTUxNTUw", + "number": 16, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:39:10Z", + "updated_at": "2019-09-07T00:43:21Z", + "closed_at": "2019-09-07T00:43:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/16", + "html_url": "https://github.com/github-api-test-org/github-api/pull/16", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/16.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/16.patch" + }, + "body": "## test" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-731175aa-fd44-4609-8ad4-202bf07f1092.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-731175aa-fd44-4609-8ad4-202bf07f1092.json new file mode 100644 index 000000000..0c94d4fa6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-731175aa-fd44-4609-8ad4-202bf07f1092.json @@ -0,0 +1,2634 @@ +[ + { + "id": 2616457763, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Nzc2Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457763", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:26Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/204", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/204/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/204/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/204/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/204", + "id": 490689120, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDcy", + "number": 204, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:25Z", + "updated_at": "2019-09-07T23:04:26Z", + "closed_at": "2019-09-07T23:04:26Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/204", + "html_url": "https://github.com/github-api-test-org/github-api/pull/204", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/204.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/204.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457750, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Nzc1MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457750", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:22Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/203", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/203/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/203/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/203/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/203", + "id": 490689112, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDY2", + "number": 203, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:21Z", + "updated_at": "2019-09-07T23:04:22Z", + "closed_at": "2019-09-07T23:04:22Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/203", + "html_url": "https://github.com/github-api-test-org/github-api/pull/203", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/203.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/203.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457748, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE2NDU3NzQ4", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457748", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:21Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/203", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/203/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/203/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/203/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/203", + "id": 490689112, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDY2", + "number": 203, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:21Z", + "updated_at": "2019-09-07T23:04:22Z", + "closed_at": "2019-09-07T23:04:22Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/203", + "html_url": "https://github.com/github-api-test-org/github-api/pull/203", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/203.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/203.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457740, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Nzc0MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457740", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:19Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/202", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/202/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/202/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/202/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/202", + "id": 490689105, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDYw", + "number": 202, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T23:04:17Z", + "updated_at": "2019-09-07T23:04:19Z", + "closed_at": "2019-09-07T23:04:19Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/202", + "html_url": "https://github.com/github-api-test-org/github-api/pull/202", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/202.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/202.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457723, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzcyMw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457723", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:15Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/200", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/200/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/200/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/200/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/200", + "id": 490689098, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDU2", + "number": 200, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:12Z", + "updated_at": "2019-09-07T23:04:15Z", + "closed_at": "2019-09-07T23:04:15Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/200", + "html_url": "https://github.com/github-api-test-org/github-api/pull/200", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/200.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/200.patch" + }, + "body": null + } + }, + { + "id": 2616457720, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzcyMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457720", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:14Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/201", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/201/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/201/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/201/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/201", + "id": 490689099, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDU3", + "number": 201, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:13Z", + "updated_at": "2019-09-07T23:04:14Z", + "closed_at": "2019-09-07T23:04:14Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/201", + "html_url": "https://github.com/github-api-test-org/github-api/pull/201", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/201.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/201.patch" + }, + "body": null + } + }, + { + "id": 2616457695, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NDU3Njk1", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457695", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:11Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/199", + "id": 490689091, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDUy", + "number": 199, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:08Z", + "updated_at": "2019-09-07T23:04:11Z", + "closed_at": "2019-09-07T23:04:10Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/199", + "html_url": "https://github.com/github-api-test-org/github-api/pull/199", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/199.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/199.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616457691, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzY5MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457691", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:10Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/199", + "id": 490689091, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDUy", + "number": 199, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:08Z", + "updated_at": "2019-09-07T23:04:11Z", + "closed_at": "2019-09-07T23:04:10Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/199", + "html_url": "https://github.com/github-api-test-org/github-api/pull/199", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/199.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/199.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616457687, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjQ1NzY4Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457687", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "merged", + "commit_id": "887e69d3a0450d17a3b9a7020206e6c4730d2cae", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/887e69d3a0450d17a3b9a7020206e6c4730d2cae", + "created_at": "2019-09-07T23:04:10Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/199", + "id": 490689091, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDUy", + "number": 199, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:08Z", + "updated_at": "2019-09-07T23:04:11Z", + "closed_at": "2019-09-07T23:04:10Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/199", + "html_url": "https://github.com/github-api-test-org/github-api/pull/199", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/199.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/199.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616457685, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY0NTc2ODU=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457685", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "referenced", + "commit_id": "887e69d3a0450d17a3b9a7020206e6c4730d2cae", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/887e69d3a0450d17a3b9a7020206e6c4730d2cae", + "created_at": "2019-09-07T23:04:10Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/199/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/199", + "id": 490689091, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDUy", + "number": 199, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:04:08Z", + "updated_at": "2019-09-07T23:04:11Z", + "closed_at": "2019-09-07T23:04:10Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/199", + "html_url": "https://github.com/github-api-test-org/github-api/pull/199", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/199.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/199.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616457638, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzYzOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457638", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:04:02Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/198", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/198/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/198/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/198/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/198", + "id": 490689080, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDQ0", + "number": 198, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:03:59Z", + "updated_at": "2019-09-07T23:04:02Z", + "closed_at": "2019-09-07T23:04:02Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/198", + "html_url": "https://github.com/github-api-test-org/github-api/pull/198", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/198.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/198.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457608, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzYwOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457608", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:03:57Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/197", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/197/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/197/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/197/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/197", + "id": 490689072, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDQx", + "number": 197, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:03:53Z", + "updated_at": "2019-09-07T23:03:57Z", + "closed_at": "2019-09-07T23:03:57Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/197", + "html_url": "https://github.com/github-api-test-org/github-api/pull/197", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/197.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/197.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457582, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzU4Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457582", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:03:52Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/196", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/196/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/196/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/196/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/196", + "id": 490689065, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDM0", + "number": 196, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:03:49Z", + "updated_at": "2019-09-07T23:03:52Z", + "closed_at": "2019-09-07T23:03:52Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/196", + "html_url": "https://github.com/github-api-test-org/github-api/pull/196", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/196.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/196.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457571, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTY0NTc1NzE=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457571", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:03:50Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/196", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/196/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/196/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/196/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/196", + "id": 490689065, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDM0", + "number": 196, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:03:49Z", + "updated_at": "2019-09-07T23:03:52Z", + "closed_at": "2019-09-07T23:03:52Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/196", + "html_url": "https://github.com/github-api-test-org/github-api/pull/196", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/196.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/196.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457546, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzU0Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457546", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:03:47Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/195", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/195/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/195/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/195/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/195", + "id": 490689060, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDMw", + "number": 195, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:03:44Z", + "updated_at": "2019-09-07T23:03:47Z", + "closed_at": "2019-09-07T23:03:47Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/195", + "html_url": "https://github.com/github-api-test-org/github-api/pull/195", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/195.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/195.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457535, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzUzNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457535", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:03:43Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/194", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/194/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/194/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/194/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/194", + "id": 490689058, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDI5", + "number": 194, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:03:42Z", + "updated_at": "2019-09-07T23:03:43Z", + "closed_at": "2019-09-07T23:03:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/194", + "html_url": "https://github.com/github-api-test-org/github-api/pull/194", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/194.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/194.patch" + }, + "body": "## test" + } + }, + { + "id": 2616457448, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NDU3NDQ4", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457448", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:03:24Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/193", + "id": 490689031, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDEz", + "number": 193, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:03:20Z", + "updated_at": "2019-09-07T23:03:24Z", + "closed_at": "2019-09-07T23:03:22Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/193", + "html_url": "https://github.com/github-api-test-org/github-api/pull/193", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/193.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/193.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616457435, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzQzNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457435", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:03:22Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/193", + "id": 490689031, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDEz", + "number": 193, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:03:20Z", + "updated_at": "2019-09-07T23:03:24Z", + "closed_at": "2019-09-07T23:03:22Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/193", + "html_url": "https://github.com/github-api-test-org/github-api/pull/193", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/193.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/193.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616457434, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjQ1NzQzNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457434", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "merged", + "commit_id": "e1c3a54855c23347e43ddb12d5d92d78b6609474", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/e1c3a54855c23347e43ddb12d5d92d78b6609474", + "created_at": "2019-09-07T23:03:22Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/193", + "id": 490689031, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDEz", + "number": 193, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:03:20Z", + "updated_at": "2019-09-07T23:03:24Z", + "closed_at": "2019-09-07T23:03:22Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/193", + "html_url": "https://github.com/github-api-test-org/github-api/pull/193", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/193.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/193.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616457433, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY0NTc0MzM=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457433", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "referenced", + "commit_id": "e1c3a54855c23347e43ddb12d5d92d78b6609474", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/e1c3a54855c23347e43ddb12d5d92d78b6609474", + "created_at": "2019-09-07T23:03:22Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/193/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/193", + "id": 490689031, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMxMDEz", + "number": 193, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:03:20Z", + "updated_at": "2019-09-07T23:03:24Z", + "closed_at": "2019-09-07T23:03:22Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/193", + "html_url": "https://github.com/github-api-test-org/github-api/pull/193", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/193.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/193.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616457318, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzMxOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457318", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:02:59Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/191", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/191/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/191/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/191/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/191", + "id": 490689002, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwOTky", + "number": 191, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:02:56Z", + "updated_at": "2019-09-07T23:02:59Z", + "closed_at": "2019-09-07T23:02:59Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/191", + "html_url": "https://github.com/github-api-test-org/github-api/pull/191", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/191.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/191.patch" + }, + "body": null + } + }, + { + "id": 2616457312, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzMxMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457312", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:02:59Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/192", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/192/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/192/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/192/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/192", + "id": 490689003, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwOTkz", + "number": 192, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:02:57Z", + "updated_at": "2019-09-07T23:02:58Z", + "closed_at": "2019-09-07T23:02:58Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/192", + "html_url": "https://github.com/github-api-test-org/github-api/pull/192", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/192.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/192.patch" + }, + "body": null + } + }, + { + "id": 2616457014, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NzAxNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616457014", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T23:02:09Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/190", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/190/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/190/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/190/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/190", + "id": 490688943, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwOTUw", + "number": 190, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T23:02:05Z", + "updated_at": "2019-09-07T23:02:09Z", + "closed_at": "2019-09-07T23:02:09Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/190", + "html_url": "https://github.com/github-api-test-org/github-api/pull/190", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/190.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/190.patch" + }, + "body": "## test" + } + }, + { + "id": 2616456118, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NjExOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616456118", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:36Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/189", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/189/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/189/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/189/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/189", + "id": 490688747, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwODIw", + "number": 189, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:34Z", + "updated_at": "2019-09-07T22:59:36Z", + "closed_at": "2019-09-07T22:59:36Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/189", + "html_url": "https://github.com/github-api-test-org/github-api/pull/189", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/189.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/189.patch" + }, + "body": "## test" + } + }, + { + "id": 2616456098, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NjA5OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616456098", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:33Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/188", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/188/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/188/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/188/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/188", + "id": 490688739, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwODE1", + "number": 188, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:30Z", + "updated_at": "2019-09-07T22:59:33Z", + "closed_at": "2019-09-07T22:59:33Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/188", + "html_url": "https://github.com/github-api-test-org/github-api/pull/188", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/188.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/188.patch" + }, + "body": "## test" + } + }, + { + "id": 2616456091, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE2NDU2MDkx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616456091", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:31Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/188", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/188/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/188/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/188/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/188", + "id": 490688739, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwODE1", + "number": 188, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:30Z", + "updated_at": "2019-09-07T22:59:33Z", + "closed_at": "2019-09-07T22:59:33Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/188", + "html_url": "https://github.com/github-api-test-org/github-api/pull/188", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/188.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/188.patch" + }, + "body": "## test" + } + }, + { + "id": 2616456078, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NjA3OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616456078", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:29Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/187", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/187/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/187/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/187/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/187", + "id": 490688737, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwODEz", + "number": 187, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T22:59:28Z", + "updated_at": "2019-09-07T22:59:29Z", + "closed_at": "2019-09-07T22:59:29Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/187", + "html_url": "https://github.com/github-api-test-org/github-api/pull/187", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/187.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/187.patch" + }, + "body": "## test" + } + }, + { + "id": 2616456062, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NjA2Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616456062", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:26Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/185", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/185/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/185/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/185/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/185", + "id": 490688730, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwODA3", + "number": 185, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:23Z", + "updated_at": "2019-09-07T22:59:26Z", + "closed_at": "2019-09-07T22:59:26Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/185", + "html_url": "https://github.com/github-api-test-org/github-api/pull/185", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/185.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/185.patch" + }, + "body": null + } + }, + { + "id": 2616456059, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1NjA1OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616456059", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:26Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/186", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/186/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/186/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/186/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/186", + "id": 490688733, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwODA5", + "number": 186, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:24Z", + "updated_at": "2019-09-07T22:59:26Z", + "closed_at": "2019-09-07T22:59:26Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/186", + "html_url": "https://github.com/github-api-test-org/github-api/pull/186", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/186.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/186.patch" + }, + "body": null + } + }, + { + "id": 2616456052, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NDU2MDUy", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616456052", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:59:22Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/184/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/184", + "id": 490688718, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwNzk5", + "number": 184, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:59:19Z", + "updated_at": "2019-09-07T22:59:22Z", + "closed_at": "2019-09-07T22:59:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/184", + "html_url": "https://github.com/github-api-test-org/github-api/pull/184", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/184.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/184.patch" + }, + "body": "## test squash" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-8c3b4d1c-5327-425f-8ee0-845cf8d3f9ca.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-8c3b4d1c-5327-425f-8ee0-845cf8d3f9ca.json new file mode 100644 index 000000000..78902c5e1 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-8c3b4d1c-5327-425f-8ee0-845cf8d3f9ca.json @@ -0,0 +1,1961 @@ +[ + { + "id": 2615869242, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2OTI0Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615869242", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:53Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/15", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/15/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/15/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/15/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/15", + "id": 490566594, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTc1", + "number": 15, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:52Z", + "updated_at": "2019-09-07T00:14:53Z", + "closed_at": "2019-09-07T00:14:53Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/15", + "html_url": "https://github.com/github-api-test-org/github-api/pull/15", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/15.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/15.patch" + }, + "body": "## test" + } + }, + { + "id": 2615869225, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2OTIyNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615869225", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:51Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/14", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/14/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/14/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/14/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/14", + "id": 490566581, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTcw", + "number": 14, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:49Z", + "updated_at": "2019-09-07T00:14:51Z", + "closed_at": "2019-09-07T00:14:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/14", + "html_url": "https://github.com/github-api-test-org/github-api/pull/14", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/14.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/14.patch" + }, + "body": "## test" + } + }, + { + "id": 2615869195, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE1ODY5MTk1", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615869195", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:49Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/14", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/14/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/14/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/14/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/14", + "id": 490566581, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTcw", + "number": 14, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:49Z", + "updated_at": "2019-09-07T00:14:51Z", + "closed_at": "2019-09-07T00:14:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/14", + "html_url": "https://github.com/github-api-test-org/github-api/pull/14", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/14.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/14.patch" + }, + "body": "## test" + } + }, + { + "id": 2615869177, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2OTE3Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615869177", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:47Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/13", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/13/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/13/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/13/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/13", + "id": 490566570, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTYy", + "number": 13, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T00:14:45Z", + "updated_at": "2019-09-07T00:14:47Z", + "closed_at": "2019-09-07T00:14:47Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/13", + "html_url": "https://github.com/github-api-test-org/github-api/pull/13", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/13.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/13.patch" + }, + "body": "## test" + } + }, + { + "id": 2615869142, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2OTE0Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615869142", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/12", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/12/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/12/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/12/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/12", + "id": 490566559, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTUz", + "number": 12, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:42Z", + "updated_at": "2019-09-07T00:14:44Z", + "closed_at": "2019-09-07T00:14:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/12", + "html_url": "https://github.com/github-api-test-org/github-api/pull/12", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/12.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/12.patch" + }, + "body": null + } + }, + { + "id": 2615869132, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2OTEzMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615869132", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/11", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/11/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/11/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/11/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/11", + "id": 490566557, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTUx", + "number": 11, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:42Z", + "updated_at": "2019-09-07T00:14:44Z", + "closed_at": "2019-09-07T00:14:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/11", + "html_url": "https://github.com/github-api-test-org/github-api/pull/11", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/11.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/11.patch" + }, + "body": null + } + }, + { + "id": 2615869098, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE1ODY5MDk4", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615869098", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:40Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/10", + "id": 490566538, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTM2", + "number": 10, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:37Z", + "updated_at": "2019-09-07T00:14:40Z", + "closed_at": "2019-09-07T00:14:39Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/10", + "html_url": "https://github.com/github-api-test-org/github-api/pull/10", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/10.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/10.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615869072, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2OTA3Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615869072", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:39Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/10", + "id": 490566538, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTM2", + "number": 10, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:37Z", + "updated_at": "2019-09-07T00:14:40Z", + "closed_at": "2019-09-07T00:14:39Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/10", + "html_url": "https://github.com/github-api-test-org/github-api/pull/10", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/10.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/10.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615869069, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNTg2OTA2OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615869069", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "merged", + "commit_id": "d7cae0fcda3c066910e8d9d5881846ca3e40e6fd", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/d7cae0fcda3c066910e8d9d5881846ca3e40e6fd", + "created_at": "2019-09-07T00:14:39Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/10", + "id": 490566538, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTM2", + "number": 10, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:37Z", + "updated_at": "2019-09-07T00:14:40Z", + "closed_at": "2019-09-07T00:14:39Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/10", + "html_url": "https://github.com/github-api-test-org/github-api/pull/10", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/10.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/10.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615869068, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTU4NjkwNjg=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615869068", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "referenced", + "commit_id": "d7cae0fcda3c066910e8d9d5881846ca3e40e6fd", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/d7cae0fcda3c066910e8d9d5881846ca3e40e6fd", + "created_at": "2019-09-07T00:14:39Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/10/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/10", + "id": 490566538, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTM2", + "number": 10, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:37Z", + "updated_at": "2019-09-07T00:14:40Z", + "closed_at": "2019-09-07T00:14:39Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/10", + "html_url": "https://github.com/github-api-test-org/github-api/pull/10", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/10.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/10.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615868991, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2ODk5MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868991", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:32Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/9", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/9/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/9/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/9/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/9", + "id": 490566522, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTIz", + "number": 9, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:30Z", + "updated_at": "2019-09-07T00:14:32Z", + "closed_at": "2019-09-07T00:14:32Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/9", + "html_url": "https://github.com/github-api-test-org/github-api/pull/9", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/9.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/9.patch" + }, + "body": "## test" + } + }, + { + "id": 2615868946, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2ODk0Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868946", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:28Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/8", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/8/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/8/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/8/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/8", + "id": 490566506, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NTA3", + "number": 8, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:24Z", + "updated_at": "2019-09-07T00:14:28Z", + "closed_at": "2019-09-07T00:14:28Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/8", + "html_url": "https://github.com/github-api-test-org/github-api/pull/8", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/8.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/8.patch" + }, + "body": "## test" + } + }, + { + "id": 2615868854, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2ODg1NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868854", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:23Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/7", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/7/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/7/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/7/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/7", + "id": 490566493, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDk1", + "number": 7, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:20Z", + "updated_at": "2019-09-07T00:14:23Z", + "closed_at": "2019-09-07T00:14:23Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/7", + "html_url": "https://github.com/github-api-test-org/github-api/pull/7", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/7.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/7.patch" + }, + "body": "## test" + } + }, + { + "id": 2615868822, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTU4Njg4MjI=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868822", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:20Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/7", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/7/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/7/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/7/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/7", + "id": 490566493, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDk1", + "number": 7, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:20Z", + "updated_at": "2019-09-07T00:14:23Z", + "closed_at": "2019-09-07T00:14:23Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/7", + "html_url": "https://github.com/github-api-test-org/github-api/pull/7", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/7.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/7.patch" + }, + "body": "## test" + } + }, + { + "id": 2615868784, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2ODc4NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868784", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:18Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/6", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/6/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/6/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/6/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/6", + "id": 490566483, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDg5", + "number": 6, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:15Z", + "updated_at": "2019-09-07T00:14:18Z", + "closed_at": "2019-09-07T00:14:18Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/6", + "html_url": "https://github.com/github-api-test-org/github-api/pull/6", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/6.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/6.patch" + }, + "body": "## test" + } + }, + { + "id": 2615868729, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2ODcyOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868729", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:14Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/5", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/5/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/5/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/5/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/5", + "id": 490566477, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDg0", + "number": 5, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:12Z", + "updated_at": "2019-09-07T00:14:14Z", + "closed_at": "2019-09-07T00:14:14Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/5", + "html_url": "https://github.com/github-api-test-org/github-api/pull/5", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/5.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/5.patch" + }, + "body": "## test" + } + }, + { + "id": 2615868680, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE1ODY4Njgw", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868680", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:10Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/4", + "id": 490566463, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDc0", + "number": 4, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:06Z", + "updated_at": "2019-09-07T00:14:10Z", + "closed_at": "2019-09-07T00:14:09Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/4", + "html_url": "https://github.com/github-api-test-org/github-api/pull/4", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/4.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/4.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615868666, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2ODY2Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868666", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:09Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/4", + "id": 490566463, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDc0", + "number": 4, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:06Z", + "updated_at": "2019-09-07T00:14:10Z", + "closed_at": "2019-09-07T00:14:09Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/4", + "html_url": "https://github.com/github-api-test-org/github-api/pull/4", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/4.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/4.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615868665, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNTg2ODY2NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868665", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "merged", + "commit_id": "432fd84ecd0973d3c4987fb3e3ae63f084a7f6a1", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/432fd84ecd0973d3c4987fb3e3ae63f084a7f6a1", + "created_at": "2019-09-07T00:14:09Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/4", + "id": 490566463, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDc0", + "number": 4, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:06Z", + "updated_at": "2019-09-07T00:14:10Z", + "closed_at": "2019-09-07T00:14:09Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/4", + "html_url": "https://github.com/github-api-test-org/github-api/pull/4", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/4.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/4.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615868659, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTU4Njg2NTk=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868659", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "referenced", + "commit_id": "432fd84ecd0973d3c4987fb3e3ae63f084a7f6a1", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/432fd84ecd0973d3c4987fb3e3ae63f084a7f6a1", + "created_at": "2019-09-07T00:14:09Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/4/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/4", + "id": 490566463, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDc0", + "number": 4, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:14:06Z", + "updated_at": "2019-09-07T00:14:10Z", + "closed_at": "2019-09-07T00:14:09Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/4", + "html_url": "https://github.com/github-api-test-org/github-api/pull/4", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/4.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/4.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2615868562, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2ODU2Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868562", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:14:00Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/2", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/2/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/2/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/2/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/2", + "id": 490566437, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDU3", + "number": 2, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:13:56Z", + "updated_at": "2019-09-07T00:14:00Z", + "closed_at": "2019-09-07T00:14:00Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/2", + "html_url": "https://github.com/github-api-test-org/github-api/pull/2", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/2.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/2.patch" + }, + "body": null + } + }, + { + "id": 2615868558, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2ODU1OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868558", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:13:59Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/3", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/3/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/3/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/3/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/3", + "id": 490566440, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDU5", + "number": 3, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:13:57Z", + "updated_at": "2019-09-07T00:13:59Z", + "closed_at": "2019-09-07T00:13:59Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/3", + "html_url": "https://github.com/github-api-test-org/github-api/pull/3", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/3.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/3.patch" + }, + "body": null + } + }, + { + "id": 2615868520, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2ODUyMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868520", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:13:55Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/1", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/1/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/1/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/1/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/1", + "id": 490566421, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDQ1", + "number": 1, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:13:51Z", + "updated_at": "2019-09-07T00:13:55Z", + "closed_at": "2019-09-07T00:13:55Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/1", + "html_url": "https://github.com/github-api-test-org/github-api/pull/1", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/1.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/1.patch" + }, + "body": "## test" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-91934a90-1c2f-4b03-b48f-8d919ca35a00.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-91934a90-1c2f-4b03-b48f-8d919ca35a00.json new file mode 100644 index 000000000..e341be55c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-91934a90-1c2f-4b03-b48f-8d919ca35a00.json @@ -0,0 +1,2514 @@ +[ + { + "id": 2616578443, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU3ODQ0Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616578443", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:12:45Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/249", + "id": 490715559, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ4ODAy", + "number": 249, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:12:42Z", + "updated_at": "2019-09-08T06:12:46Z", + "closed_at": "2019-09-08T06:12:45Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/249", + "html_url": "https://github.com/github-api-test-org/github-api/pull/249", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/249.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/249.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616578442, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjU3ODQ0Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616578442", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "merged", + "commit_id": "282504b288e9fd86b81c499e706748d37d6fcb61", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/282504b288e9fd86b81c499e706748d37d6fcb61", + "created_at": "2019-09-08T06:12:45Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/249", + "id": 490715559, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ4ODAy", + "number": 249, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:12:42Z", + "updated_at": "2019-09-08T06:12:46Z", + "closed_at": "2019-09-08T06:12:45Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/249", + "html_url": "https://github.com/github-api-test-org/github-api/pull/249", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/249.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/249.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616578441, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY1Nzg0NDE=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616578441", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "referenced", + "commit_id": "282504b288e9fd86b81c499e706748d37d6fcb61", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/282504b288e9fd86b81c499e706748d37d6fcb61", + "created_at": "2019-09-08T06:12:45Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/249/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/249", + "id": 490715559, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ4ODAy", + "number": 249, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:12:42Z", + "updated_at": "2019-09-08T06:12:46Z", + "closed_at": "2019-09-08T06:12:45Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/249", + "html_url": "https://github.com/github-api-test-org/github-api/pull/249", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/249.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/249.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616574853, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NTc0ODUz", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616574853", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:00:56Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/248", + "id": 490714798, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ4Mjgy", + "number": 248, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:00:52Z", + "updated_at": "2019-09-08T06:00:56Z", + "closed_at": "2019-09-08T06:00:55Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/248", + "html_url": "https://github.com/github-api-test-org/github-api/pull/248", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/248.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/248.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616574843, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU3NDg0Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616574843", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T06:00:55Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/248", + "id": 490714798, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ4Mjgy", + "number": 248, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:00:52Z", + "updated_at": "2019-09-08T06:00:56Z", + "closed_at": "2019-09-08T06:00:55Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/248", + "html_url": "https://github.com/github-api-test-org/github-api/pull/248", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/248.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/248.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616574841, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjU3NDg0MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616574841", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "merged", + "commit_id": "4f863b31a9bb101530fb560f1f0ed417de2266ca", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/4f863b31a9bb101530fb560f1f0ed417de2266ca", + "created_at": "2019-09-08T06:00:54Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/248", + "id": 490714798, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ4Mjgy", + "number": 248, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:00:52Z", + "updated_at": "2019-09-08T06:00:56Z", + "closed_at": "2019-09-08T06:00:55Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/248", + "html_url": "https://github.com/github-api-test-org/github-api/pull/248", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/248.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/248.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616574839, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY1NzQ4Mzk=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616574839", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "referenced", + "commit_id": "4f863b31a9bb101530fb560f1f0ed417de2266ca", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/4f863b31a9bb101530fb560f1f0ed417de2266ca", + "created_at": "2019-09-08T06:00:54Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/248/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/248", + "id": 490714798, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ4Mjgy", + "number": 248, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T06:00:52Z", + "updated_at": "2019-09-08T06:00:56Z", + "closed_at": "2019-09-08T06:00:55Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/248", + "html_url": "https://github.com/github-api-test-org/github-api/pull/248", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/248.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/248.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616569401, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTQwMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569401", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:35Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/247", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/247/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/247/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/247/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/247", + "id": 490713719, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTU2", + "number": 247, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:34Z", + "updated_at": "2019-09-08T05:43:35Z", + "closed_at": "2019-09-08T05:43:35Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/247", + "html_url": "https://github.com/github-api-test-org/github-api/pull/247", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/247.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/247.patch" + }, + "body": "## test" + } + }, + { + "id": 2616569391, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTM5MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569391", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:33Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/246", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/246/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/246/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/246/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/246", + "id": 490713713, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTUz", + "number": 246, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:31Z", + "updated_at": "2019-09-08T05:43:33Z", + "closed_at": "2019-09-08T05:43:33Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/246", + "html_url": "https://github.com/github-api-test-org/github-api/pull/246", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/246.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/246.patch" + }, + "body": "## test" + } + }, + { + "id": 2616569387, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE2NTY5Mzg3", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569387", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:31Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/246", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/246/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/246/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/246/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/246", + "id": 490713713, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTUz", + "number": 246, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:31Z", + "updated_at": "2019-09-08T05:43:33Z", + "closed_at": "2019-09-08T05:43:33Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/246", + "html_url": "https://github.com/github-api-test-org/github-api/pull/246", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/246.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/246.patch" + }, + "body": "## test" + } + }, + { + "id": 2616569377, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTM3Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569377", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:29Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/245", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/245/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/245/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/245/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/245", + "id": 490713704, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTQ1", + "number": 245, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-08T05:43:28Z", + "updated_at": "2019-09-08T05:43:29Z", + "closed_at": "2019-09-08T05:43:29Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/245", + "html_url": "https://github.com/github-api-test-org/github-api/pull/245", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/245.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/245.patch" + }, + "body": "## test" + } + }, + { + "id": 2616569367, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTM2Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569367", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:26Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/243", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/243/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/243/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/243/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/243", + "id": 490713699, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTQx", + "number": 243, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:23Z", + "updated_at": "2019-09-08T05:43:26Z", + "closed_at": "2019-09-08T05:43:26Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/243", + "html_url": "https://github.com/github-api-test-org/github-api/pull/243", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/243.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/243.patch" + }, + "body": null + } + }, + { + "id": 2616569366, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTM2Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569366", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:26Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/244", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/244/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/244/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/244/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/244", + "id": 490713700, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTQy", + "number": 244, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:24Z", + "updated_at": "2019-09-08T05:43:25Z", + "closed_at": "2019-09-08T05:43:25Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/244", + "html_url": "https://github.com/github-api-test-org/github-api/pull/244", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/244.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/244.patch" + }, + "body": null + } + }, + { + "id": 2616569356, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NTY5MzU2", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569356", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:22Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/242", + "id": 490713692, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTM2", + "number": 242, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:18Z", + "updated_at": "2019-09-08T05:43:22Z", + "closed_at": "2019-09-08T05:43:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/242", + "html_url": "https://github.com/github-api-test-org/github-api/pull/242", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/242.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/242.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616569342, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTM0Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569342", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:21Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/242", + "id": 490713692, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTM2", + "number": 242, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:18Z", + "updated_at": "2019-09-08T05:43:22Z", + "closed_at": "2019-09-08T05:43:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/242", + "html_url": "https://github.com/github-api-test-org/github-api/pull/242", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/242.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/242.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616569338, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjU2OTMzOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569338", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "merged", + "commit_id": "a5a64cd00e921fbde33aefc38a95c200563c3aa1", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/a5a64cd00e921fbde33aefc38a95c200563c3aa1", + "created_at": "2019-09-08T05:43:21Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/242", + "id": 490713692, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTM2", + "number": 242, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:18Z", + "updated_at": "2019-09-08T05:43:22Z", + "closed_at": "2019-09-08T05:43:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/242", + "html_url": "https://github.com/github-api-test-org/github-api/pull/242", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/242.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/242.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616569337, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY1NjkzMzc=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569337", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "referenced", + "commit_id": "a5a64cd00e921fbde33aefc38a95c200563c3aa1", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/a5a64cd00e921fbde33aefc38a95c200563c3aa1", + "created_at": "2019-09-08T05:43:21Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/242/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/242", + "id": 490713692, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTM2", + "number": 242, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:18Z", + "updated_at": "2019-09-08T05:43:22Z", + "closed_at": "2019-09-08T05:43:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/242", + "html_url": "https://github.com/github-api-test-org/github-api/pull/242", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/242.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/242.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616569293, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTI5Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569293", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:13Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/241", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/241/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/241/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/241/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/241", + "id": 490713680, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTI4", + "number": 241, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:10Z", + "updated_at": "2019-09-08T05:43:13Z", + "closed_at": "2019-09-08T05:43:13Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/241", + "html_url": "https://github.com/github-api-test-org/github-api/pull/241", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/241.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/241.patch" + }, + "body": "## test" + } + }, + { + "id": 2616569271, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTI3MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569271", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:08Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/240", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/240/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/240/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/240/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/240", + "id": 490713672, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTIz", + "number": 240, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:04Z", + "updated_at": "2019-09-08T05:43:08Z", + "closed_at": "2019-09-08T05:43:08Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/240", + "html_url": "https://github.com/github-api-test-org/github-api/pull/240", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/240.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/240.patch" + }, + "body": "## test" + } + }, + { + "id": 2616569241, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTI0MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569241", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:03Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/239", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/239/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/239/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/239/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/239", + "id": 490713664, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTE2", + "number": 239, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:00Z", + "updated_at": "2019-09-08T05:43:03Z", + "closed_at": "2019-09-08T05:43:03Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/239", + "html_url": "https://github.com/github-api-test-org/github-api/pull/239", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/239.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/239.patch" + }, + "body": "## test" + } + }, + { + "id": 2616569234, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTY1NjkyMzQ=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569234", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:43:00Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/239", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/239/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/239/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/239/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/239", + "id": 490713664, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTE2", + "number": 239, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:43:00Z", + "updated_at": "2019-09-08T05:43:03Z", + "closed_at": "2019-09-08T05:43:03Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/239", + "html_url": "https://github.com/github-api-test-org/github-api/pull/239", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/239.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/239.patch" + }, + "body": "## test" + } + }, + { + "id": 2616569227, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTIyNw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569227", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:42:58Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/238", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/238/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/238/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/238/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/238", + "id": 490713663, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTE1", + "number": 238, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:42:55Z", + "updated_at": "2019-09-08T05:42:58Z", + "closed_at": "2019-09-08T05:42:58Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/238", + "html_url": "https://github.com/github-api-test-org/github-api/pull/238", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/238.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/238.patch" + }, + "body": "## test" + } + }, + { + "id": 2616569214, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTIxNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569214", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:42:54Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/237", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/237/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/237/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/237/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/237", + "id": 490713661, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTEz", + "number": 237, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:42:53Z", + "updated_at": "2019-09-08T05:42:54Z", + "closed_at": "2019-09-08T05:42:54Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/237", + "html_url": "https://github.com/github-api-test-org/github-api/pull/237", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/237.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/237.patch" + }, + "body": "## test" + } + }, + { + "id": 2616569206, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NTY5MjA2", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569206", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:42:52Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/236", + "id": 490713654, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTA2", + "number": 236, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:42:48Z", + "updated_at": "2019-09-08T05:42:52Z", + "closed_at": "2019-09-08T05:42:50Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/236", + "html_url": "https://github.com/github-api-test-org/github-api/pull/236", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/236.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/236.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616569197, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTE5Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569197", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:42:50Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/236", + "id": 490713654, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTA2", + "number": 236, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:42:48Z", + "updated_at": "2019-09-08T05:42:52Z", + "closed_at": "2019-09-08T05:42:50Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/236", + "html_url": "https://github.com/github-api-test-org/github-api/pull/236", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/236.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/236.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616569196, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjU2OTE5Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569196", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "merged", + "commit_id": "e9dd561d4b7dc525b67e02538aa5d2eff3c3c289", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/e9dd561d4b7dc525b67e02538aa5d2eff3c3c289", + "created_at": "2019-09-08T05:42:50Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/236", + "id": 490713654, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTA2", + "number": 236, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:42:48Z", + "updated_at": "2019-09-08T05:42:52Z", + "closed_at": "2019-09-08T05:42:50Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/236", + "html_url": "https://github.com/github-api-test-org/github-api/pull/236", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/236.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/236.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616569195, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY1NjkxOTU=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569195", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "referenced", + "commit_id": "e9dd561d4b7dc525b67e02538aa5d2eff3c3c289", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/e9dd561d4b7dc525b67e02538aa5d2eff3c3c289", + "created_at": "2019-09-08T05:42:50Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/236/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/236", + "id": 490713654, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTA2", + "number": 236, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:42:48Z", + "updated_at": "2019-09-08T05:42:52Z", + "closed_at": "2019-09-08T05:42:50Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/236", + "html_url": "https://github.com/github-api-test-org/github-api/pull/236", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/236.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/236.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616569153, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTE1Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569153", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:42:42Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/234", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/234/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/234/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/234/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/234", + "id": 490713643, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NDk4", + "number": 234, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:42:39Z", + "updated_at": "2019-09-08T05:42:42Z", + "closed_at": "2019-09-08T05:42:42Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/234", + "html_url": "https://github.com/github-api-test-org/github-api/pull/234", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/234.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/234.patch" + }, + "body": null + } + }, + { + "id": 2616569152, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTE1Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569152", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:42:42Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/235", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/235/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/235/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/235/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/235", + "id": 490713645, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NTAw", + "number": 235, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:42:40Z", + "updated_at": "2019-09-08T05:42:41Z", + "closed_at": "2019-09-08T05:42:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/235", + "html_url": "https://github.com/github-api-test-org/github-api/pull/235", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/235.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/235.patch" + }, + "body": null + } + }, + { + "id": 2616569136, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjU2OTEzNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616569136", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T05:42:38Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/233", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/233/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/233/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/233/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/233", + "id": 490713635, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjQ3NDkz", + "number": 233, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T05:42:34Z", + "updated_at": "2019-09-08T05:42:38Z", + "closed_at": "2019-09-08T05:42:38Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/233", + "html_url": "https://github.com/github-api-test-org/github-api/pull/233", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/233.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/233.patch" + }, + "body": "## test" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-a808d770-8f9c-44ae-bcbe-ebd3311bcce8.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-a808d770-8f9c-44ae-bcbe-ebd3311bcce8.json new file mode 100644 index 000000000..2ae7e0712 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-a808d770-8f9c-44ae-bcbe-ebd3311bcce8.json @@ -0,0 +1,2514 @@ +[ + { + "id": 2622483639, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjQ4MzYzOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622483639", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T14:29:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/285", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/285/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/285/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/285/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/285", + "id": 491709400, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDIzNzM0", + "number": 285, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T14:28:01Z", + "updated_at": "2019-09-10T14:29:44Z", + "closed_at": "2019-09-10T14:29:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/285", + "html_url": "https://github.com/github-api-test-org/github-api/pull/285", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/285.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/285.patch" + }, + "body": "## test" + } + }, + { + "id": 2622469082, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjQ2OTA4Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622469082", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T14:26:05Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/284", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/284/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/284/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/284/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/284", + "id": 491708158, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDIyNzA1", + "number": 284, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T14:26:04Z", + "updated_at": "2019-09-10T14:26:05Z", + "closed_at": "2019-09-10T14:26:05Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/284", + "html_url": "https://github.com/github-api-test-org/github-api/pull/284", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/284.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/284.patch" + }, + "body": "## test" + } + }, + { + "id": 2622459395, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjQ1OTM5NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622459395", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T14:23:34Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/283", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/283/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/283/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/283/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/283", + "id": 491706573, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDIxNDU3", + "number": 283, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T14:23:33Z", + "updated_at": "2019-09-10T14:23:34Z", + "closed_at": "2019-09-10T14:23:34Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/283", + "html_url": "https://github.com/github-api-test-org/github-api/pull/283", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/283.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/283.patch" + }, + "body": "## test" + } + }, + { + "id": 2622442367, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjQ0MjM2Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622442367", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T14:19:07Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/282", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/282/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/282/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/282/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/282", + "id": 491703709, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDE5MTU3", + "number": 282, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T14:19:06Z", + "updated_at": "2019-09-10T14:19:07Z", + "closed_at": "2019-09-10T14:19:07Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/282", + "html_url": "https://github.com/github-api-test-org/github-api/pull/282", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/282.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/282.patch" + }, + "body": "## test" + } + }, + { + "id": 2622420034, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjQyMDAzNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622420034", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T14:13:14Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/281", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/281/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/281/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/281/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/281", + "id": 491700000, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDE2Mjg3", + "number": 281, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T14:13:13Z", + "updated_at": "2019-09-10T14:13:14Z", + "closed_at": "2019-09-10T14:13:14Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/281", + "html_url": "https://github.com/github-api-test-org/github-api/pull/281", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/281.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/281.patch" + }, + "body": "## test" + } + }, + { + "id": 2622363511, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjM2MzUxMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622363511", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T13:58:05Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/280", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/280/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/280/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/280/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/280", + "id": 491690627, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDA4ODg2", + "number": 280, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T13:58:02Z", + "updated_at": "2019-09-10T13:58:04Z", + "closed_at": "2019-09-10T13:58:04Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/280", + "html_url": "https://github.com/github-api-test-org/github-api/pull/280", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/280.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/280.patch" + }, + "body": "## test" + } + }, + { + "id": 2622352779, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjM1Mjc3OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622352779", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T13:55:18Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/279", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/279/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/279/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/279/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/279", + "id": 491688810, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDA3NTAw", + "number": 279, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T13:55:15Z", + "updated_at": "2019-09-10T13:55:18Z", + "closed_at": "2019-09-10T13:55:18Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/279", + "html_url": "https://github.com/github-api-test-org/github-api/pull/279", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/279.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/279.patch" + }, + "body": "## test" + } + }, + { + "id": 2622343307, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjM0MzMwNw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622343307", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T13:52:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/278", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/278/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/278/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/278/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/278", + "id": 491687216, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDA2MjQy", + "number": 278, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T13:52:42Z", + "updated_at": "2019-09-10T13:52:44Z", + "closed_at": "2019-09-10T13:52:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/278", + "html_url": "https://github.com/github-api-test-org/github-api/pull/278", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/278.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/278.patch" + }, + "body": "## test" + } + }, + { + "id": 2622324621, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjMyNDYyMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622324621", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T13:47:45Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/277", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/277/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/277/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/277/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/277", + "id": 491684130, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE2MDAzODA5", + "number": 277, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T13:47:44Z", + "updated_at": "2019-09-10T13:47:45Z", + "closed_at": "2019-09-10T13:47:45Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/277", + "html_url": "https://github.com/github-api-test-org/github-api/pull/277", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/277.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/277.patch" + }, + "body": "## test" + } + }, + { + "id": 2622292535, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjI5MjUzNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622292535", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T13:39:00Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/276", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/276/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/276/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/276/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/276", + "id": 491678885, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1OTk5NzQy", + "number": 276, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T13:38:59Z", + "updated_at": "2019-09-10T13:39:00Z", + "closed_at": "2019-09-10T13:39:00Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/276", + "html_url": "https://github.com/github-api-test-org/github-api/pull/276", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/276.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/276.patch" + }, + "body": "## test" + } + }, + { + "id": 2622267404, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjI2NzQwNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622267404", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T13:32:04Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/275", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/275/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/275/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/275/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/275", + "id": 491674715, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1OTk2NDAw", + "number": 275, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T13:32:01Z", + "updated_at": "2019-09-10T13:32:04Z", + "closed_at": "2019-09-10T13:32:03Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/275", + "html_url": "https://github.com/github-api-test-org/github-api/pull/275", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/275.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/275.patch" + }, + "body": "## test" + } + }, + { + "id": 2622261381, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYyMjI2MTM4MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2622261381", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-10T13:30:19Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/274", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/274/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/274/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/274/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/274", + "id": 491673743, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1OTk1NjI1", + "number": 274, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-10T13:30:18Z", + "updated_at": "2019-09-10T13:30:19Z", + "closed_at": "2019-09-10T13:30:19Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/274", + "html_url": "https://github.com/github-api-test-org/github-api/pull/274", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/274.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/274.patch" + }, + "body": "## test" + } + }, + { + "id": 2617061980, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNzA2MTk4MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2617061980", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T23:20:38Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/273", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/273/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/273/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/273/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/273", + "id": 490822046, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MzE2Mzc3", + "number": 273, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T23:20:37Z", + "updated_at": "2019-09-08T23:20:38Z", + "closed_at": "2019-09-08T23:20:38Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/273", + "html_url": "https://github.com/github-api-test-org/github-api/pull/273", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/273.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/273.patch" + }, + "body": "## test" + } + }, + { + "id": 2616603416, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NjAzNDE2", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616603416", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:25:55Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/261/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/261", + "id": 490720728, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzE5", + "number": 261, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:23Z", + "updated_at": "2019-09-08T07:25:55Z", + "closed_at": "2019-09-08T07:24:25Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/261", + "html_url": "https://github.com/github-api-test-org/github-api/pull/261", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/261.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/261.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616603381, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NjAzMzgx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616603381", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:25:48Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/267", + "id": 490720761, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzQz", + "number": 267, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:51Z", + "updated_at": "2019-09-08T07:25:48Z", + "closed_at": "2019-09-08T07:24:54Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/267", + "html_url": "https://github.com/github-api-test-org/github-api/pull/267", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/267.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/267.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616603124, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMzEyNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616603124", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:25:09Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/272", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/272/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/272/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/272/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/272", + "id": 490720797, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzcw", + "number": 272, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:25:08Z", + "updated_at": "2019-09-08T07:25:09Z", + "closed_at": "2019-09-08T07:25:09Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/272", + "html_url": "https://github.com/github-api-test-org/github-api/pull/272", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/272.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/272.patch" + }, + "body": "## test" + } + }, + { + "id": 2616603103, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMzEwMw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616603103", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:25:06Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/271", + "id": 490720788, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzYz", + "number": 271, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:25:04Z", + "updated_at": "2019-09-08T07:25:06Z", + "closed_at": "2019-09-08T07:25:06Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271", + "html_url": "https://github.com/github-api-test-org/github-api/pull/271", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/271.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/271.patch" + }, + "body": "## test" + } + }, + { + "id": 2616603092, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE2NjAzMDky", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616603092", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:25:04Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/271/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/271", + "id": 490720788, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzYz", + "number": 271, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:25:04Z", + "updated_at": "2019-09-08T07:25:06Z", + "closed_at": "2019-09-08T07:25:06Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/271", + "html_url": "https://github.com/github-api-test-org/github-api/pull/271", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/271.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/271.patch" + }, + "body": "## test" + } + }, + { + "id": 2616603073, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMzA3Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616603073", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:25:02Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/270", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/270/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/270/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/270/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/270", + "id": 490720781, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzU4", + "number": 270, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-08T07:25:00Z", + "updated_at": "2019-09-08T07:25:02Z", + "closed_at": "2019-09-08T07:25:02Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/270", + "html_url": "https://github.com/github-api-test-org/github-api/pull/270", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/270.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/270.patch" + }, + "body": "## test" + } + }, + { + "id": 2616603054, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMzA1NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616603054", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:59Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/269", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/269/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/269/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/269/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/269", + "id": 490720773, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzUy", + "number": 269, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:56Z", + "updated_at": "2019-09-08T07:24:59Z", + "closed_at": "2019-09-08T07:24:59Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/269", + "html_url": "https://github.com/github-api-test-org/github-api/pull/269", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/269.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/269.patch" + }, + "body": null + } + }, + { + "id": 2616603052, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMzA1Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616603052", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:58Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/268", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/268/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/268/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/268/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/268", + "id": 490720771, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzUw", + "number": 268, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:56Z", + "updated_at": "2019-09-08T07:24:58Z", + "closed_at": "2019-09-08T07:24:58Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/268", + "html_url": "https://github.com/github-api-test-org/github-api/pull/268", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/268.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/268.patch" + }, + "body": null + } + }, + { + "id": 2616603019, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMzAxOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616603019", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:54Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/267", + "id": 490720761, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzQz", + "number": 267, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:51Z", + "updated_at": "2019-09-08T07:25:48Z", + "closed_at": "2019-09-08T07:24:54Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/267", + "html_url": "https://github.com/github-api-test-org/github-api/pull/267", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/267.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/267.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616603017, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjYwMzAxNw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616603017", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "merged", + "commit_id": "ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "created_at": "2019-09-08T07:24:54Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/267", + "id": 490720761, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzQz", + "number": 267, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:51Z", + "updated_at": "2019-09-08T07:25:48Z", + "closed_at": "2019-09-08T07:24:54Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/267", + "html_url": "https://github.com/github-api-test-org/github-api/pull/267", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/267.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/267.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616603016, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY2MDMwMTY=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616603016", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "referenced", + "commit_id": "ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/ecec449372b1e8270524a35c1a5aa8fdaf0e6676", + "created_at": "2019-09-08T07:24:54Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/267/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/267", + "id": 490720761, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzQz", + "number": 267, + "title": "squashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:51Z", + "updated_at": "2019-09-08T07:25:48Z", + "closed_at": "2019-09-08T07:24:54Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/267", + "html_url": "https://github.com/github-api-test-org/github-api/pull/267", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/267.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/267.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616602977, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMjk3Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602977", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:47Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/266", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/266/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/266/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/266/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/266", + "id": 490720755, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzQw", + "number": 266, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:43Z", + "updated_at": "2019-09-08T07:24:46Z", + "closed_at": "2019-09-08T07:24:46Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/266", + "html_url": "https://github.com/github-api-test-org/github-api/pull/266", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/266.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/266.patch" + }, + "body": "## test" + } + }, + { + "id": 2616602953, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMjk1Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602953", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:42Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/265", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/265/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/265/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/265/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/265", + "id": 490720748, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzM0", + "number": 265, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:38Z", + "updated_at": "2019-09-08T07:24:42Z", + "closed_at": "2019-09-08T07:24:42Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/265", + "html_url": "https://github.com/github-api-test-org/github-api/pull/265", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/265.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/265.patch" + }, + "body": "## test" + } + }, + { + "id": 2616602922, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMjkyMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602922", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:36Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/264", + "id": 490720743, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzMw", + "number": 264, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:34Z", + "updated_at": "2019-09-08T07:24:36Z", + "closed_at": "2019-09-08T07:24:36Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264", + "html_url": "https://github.com/github-api-test-org/github-api/pull/264", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/264.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/264.patch" + }, + "body": "## test" + } + }, + { + "id": 2616602907, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTY2MDI5MDc=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602907", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:35Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/264/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/264", + "id": 490720743, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzMw", + "number": 264, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:34Z", + "updated_at": "2019-09-08T07:24:36Z", + "closed_at": "2019-09-08T07:24:36Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/264", + "html_url": "https://github.com/github-api-test-org/github-api/pull/264", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/264.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/264.patch" + }, + "body": "## test" + } + }, + { + "id": 2616602899, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMjg5OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602899", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:33Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/263", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/263/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/263/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/263/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/263", + "id": 490720734, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzIy", + "number": 263, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:30Z", + "updated_at": "2019-09-08T07:24:33Z", + "closed_at": "2019-09-08T07:24:33Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/263", + "html_url": "https://github.com/github-api-test-org/github-api/pull/263", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/263.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/263.patch" + }, + "body": "## test" + } + }, + { + "id": 2616602878, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjYwMjg3OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616602878", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-08T07:24:29Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/262", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/262/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/262/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/262/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/262", + "id": 490720732, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjUyMzIx", + "number": 262, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-08T07:24:28Z", + "updated_at": "2019-09-08T07:24:28Z", + "closed_at": "2019-09-08T07:24:28Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/262", + "html_url": "https://github.com/github-api-test-org/github-api/pull/262", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/262.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/262.patch" + }, + "body": "## test" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-b931f4bd-a59c-49c0-ba7f-8a99a948a343.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-b931f4bd-a59c-49c0-ba7f-8a99a948a343.json new file mode 100644 index 000000000..7154ac4a4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-b931f4bd-a59c-49c0-ba7f-8a99a948a343.json @@ -0,0 +1,2656 @@ +[ + { + "id": 2615983652, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzY1Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983652", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:25:01Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/97", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/97/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/97/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/97/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/97", + "id": 490589828, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDcw", + "number": 97, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T04:24:59Z", + "updated_at": "2019-09-07T04:25:01Z", + "closed_at": "2019-09-07T04:25:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/97", + "html_url": "https://github.com/github-api-test-org/github-api/pull/97", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/97.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/97.patch" + }, + "body": "## test" + } + }, + { + "id": 2615983648, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzY0OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983648", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:24:57Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/96", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/96/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/96/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/96/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/96", + "id": 490589822, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDY2", + "number": 96, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:24:55Z", + "updated_at": "2019-09-07T04:24:57Z", + "closed_at": "2019-09-07T04:24:57Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/96", + "html_url": "https://github.com/github-api-test-org/github-api/pull/96", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/96.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/96.patch" + }, + "body": null + } + }, + { + "id": 2615983647, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzY0Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983647", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:24:57Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/95", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/95/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/95/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/95/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/95", + "id": 490589821, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDY1", + "number": 95, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:24:55Z", + "updated_at": "2019-09-07T04:24:57Z", + "closed_at": "2019-09-07T04:24:57Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/95", + "html_url": "https://github.com/github-api-test-org/github-api/pull/95", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/95.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/95.patch" + }, + "body": null + } + }, + { + "id": 2615983629, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzYyOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983629", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:24:51Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/94", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/94/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/94/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/94/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/94", + "id": 490589812, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDU2", + "number": 94, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:24:48Z", + "updated_at": "2019-09-07T04:24:51Z", + "closed_at": "2019-09-07T04:24:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/94", + "html_url": "https://github.com/github-api-test-org/github-api/pull/94", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/94.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/94.patch" + }, + "body": "## test" + } + }, + { + "id": 2615983617, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzYxNw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983617", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:24:47Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/93", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/93/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/93/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/93/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/93", + "id": 490589801, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDUx", + "number": 93, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:24:43Z", + "updated_at": "2019-09-07T04:24:47Z", + "closed_at": "2019-09-07T04:24:46Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/93", + "html_url": "https://github.com/github-api-test-org/github-api/pull/93", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/93.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/93.patch" + }, + "body": "## test" + } + }, + { + "id": 2615983599, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzU5OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983599", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:24:41Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/92", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/92/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/92/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/92/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/92", + "id": 490589796, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDQ4", + "number": 92, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:24:39Z", + "updated_at": "2019-09-07T04:24:41Z", + "closed_at": "2019-09-07T04:24:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/92", + "html_url": "https://github.com/github-api-test-org/github-api/pull/92", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/92.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/92.patch" + }, + "body": "## test" + } + }, + { + "id": 2615983592, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTU5ODM1OTI=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983592", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:24:40Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/92", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/92/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/92/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/92/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/92", + "id": 490589796, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDQ4", + "number": 92, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:24:39Z", + "updated_at": "2019-09-07T04:24:41Z", + "closed_at": "2019-09-07T04:24:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/92", + "html_url": "https://github.com/github-api-test-org/github-api/pull/92", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/92.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/92.patch" + }, + "body": "## test" + } + }, + { + "id": 2615983579, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzU3OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983579", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:24:38Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/91", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/91/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/91/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/91/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/91", + "id": 490589794, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDQ2", + "number": 91, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:24:35Z", + "updated_at": "2019-09-07T04:24:38Z", + "closed_at": "2019-09-07T04:24:38Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/91", + "html_url": "https://github.com/github-api-test-org/github-api/pull/91", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/91.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/91.patch" + }, + "body": "## test" + } + }, + { + "id": 2615983553, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzU1Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983553", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:24:34Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/90", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/90/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/90/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/90/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/90", + "id": 490589787, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDQw", + "number": 90, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:24:33Z", + "updated_at": "2019-09-07T04:24:34Z", + "closed_at": "2019-09-07T04:24:34Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/90", + "html_url": "https://github.com/github-api-test-org/github-api/pull/90", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/90.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/90.patch" + }, + "body": "## test" + } + }, + { + "id": 2615983536, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzUzNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983536", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:24:29Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/88", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/88/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/88/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/88/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/88", + "id": 490589779, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDMz", + "number": 88, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:24:26Z", + "updated_at": "2019-09-07T04:24:29Z", + "closed_at": "2019-09-07T04:24:29Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/88", + "html_url": "https://github.com/github-api-test-org/github-api/pull/88", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/88.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/88.patch" + }, + "body": null + } + }, + { + "id": 2615983533, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzUzMw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983533", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:24:29Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/89", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/89/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/89/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/89/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/89", + "id": 490589783, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDM2", + "number": 89, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:24:27Z", + "updated_at": "2019-09-07T04:24:29Z", + "closed_at": "2019-09-07T04:24:29Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/89", + "html_url": "https://github.com/github-api-test-org/github-api/pull/89", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/89.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/89.patch" + }, + "body": null + } + }, + { + "id": 2615983522, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk4MzUyMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615983522", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:24:25Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/87", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/87/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/87/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/87/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/87", + "id": 490589775, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY1NDMw", + "number": 87, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:24:21Z", + "updated_at": "2019-09-07T04:24:25Z", + "closed_at": "2019-09-07T04:24:25Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/87", + "html_url": "https://github.com/github-api-test-org/github-api/pull/87", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/87.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/87.patch" + }, + "body": "## test" + } + }, + { + "id": 2615979460, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTQ2MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979460", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:12:18Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/86", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/86/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/86/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/86/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/86", + "id": 490588844, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0ODIz", + "number": 86, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:12:16Z", + "updated_at": "2019-09-07T04:12:17Z", + "closed_at": "2019-09-07T04:12:17Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/86", + "html_url": "https://github.com/github-api-test-org/github-api/pull/86", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/86.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/86.patch" + }, + "body": "## test" + } + }, + { + "id": 2615979429, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTQyOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979429", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:12:15Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/85", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/85/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/85/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/85/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/85", + "id": 490588839, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0ODIx", + "number": 85, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:12:13Z", + "updated_at": "2019-09-07T04:12:14Z", + "closed_at": "2019-09-07T04:12:14Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/85", + "html_url": "https://github.com/github-api-test-org/github-api/pull/85", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/85.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/85.patch" + }, + "body": "## test" + } + }, + { + "id": 2615979427, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE1OTc5NDI3", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979427", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:12:13Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/85", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/85/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/85/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/85/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/85", + "id": 490588839, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0ODIx", + "number": 85, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:12:13Z", + "updated_at": "2019-09-07T04:12:14Z", + "closed_at": "2019-09-07T04:12:14Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/85", + "html_url": "https://github.com/github-api-test-org/github-api/pull/85", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/85.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/85.patch" + }, + "body": "## test" + } + }, + { + "id": 2615979402, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTQwMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979402", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:12:11Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/84", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/84/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/84/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/84/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/84", + "id": 490588831, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0ODE3", + "number": 84, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T04:12:09Z", + "updated_at": "2019-09-07T04:12:11Z", + "closed_at": "2019-09-07T04:12:11Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/84", + "html_url": "https://github.com/github-api-test-org/github-api/pull/84", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/84.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/84.patch" + }, + "body": "## test" + } + }, + { + "id": 2615979377, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTM3Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979377", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:12:08Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/82", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/82/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/82/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/82/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/82", + "id": 490588822, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0ODEw", + "number": 82, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:12:05Z", + "updated_at": "2019-09-07T04:12:08Z", + "closed_at": "2019-09-07T04:12:08Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/82", + "html_url": "https://github.com/github-api-test-org/github-api/pull/82", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/82.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/82.patch" + }, + "body": null + } + }, + { + "id": 2615979376, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTM3Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979376", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:12:07Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/83", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/83/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/83/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/83/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/83", + "id": 490588824, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0ODEy", + "number": 83, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:12:06Z", + "updated_at": "2019-09-07T04:12:07Z", + "closed_at": "2019-09-07T04:12:07Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/83", + "html_url": "https://github.com/github-api-test-org/github-api/pull/83", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/83.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/83.patch" + }, + "body": null + } + }, + { + "id": 2615979339, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTMzOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979339", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:12:01Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/81", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/81/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/81/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/81/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/81", + "id": 490588815, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0ODAz", + "number": 81, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:11:57Z", + "updated_at": "2019-09-07T04:12:01Z", + "closed_at": "2019-09-07T04:12:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/81", + "html_url": "https://github.com/github-api-test-org/github-api/pull/81", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/81.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/81.patch" + }, + "body": "## test" + } + }, + { + "id": 2615979310, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTMxMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979310", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:11:56Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/80", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/80/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/80/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/80/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/80", + "id": 490588801, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0Nzkw", + "number": 80, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:11:52Z", + "updated_at": "2019-09-07T04:11:56Z", + "closed_at": "2019-09-07T04:11:56Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/80", + "html_url": "https://github.com/github-api-test-org/github-api/pull/80", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/80.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/80.patch" + }, + "body": "## test" + } + }, + { + "id": 2615979282, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTI4Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979282", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:11:51Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/79", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/79/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/79/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/79/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/79", + "id": 490588792, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0Nzgz", + "number": 79, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:11:49Z", + "updated_at": "2019-09-07T04:11:51Z", + "closed_at": "2019-09-07T04:11:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/79", + "html_url": "https://github.com/github-api-test-org/github-api/pull/79", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/79.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/79.patch" + }, + "body": "## test" + } + }, + { + "id": 2615979268, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTU5NzkyNjg=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979268", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:11:49Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/79", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/79/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/79/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/79/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/79", + "id": 490588792, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0Nzgz", + "number": 79, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:11:49Z", + "updated_at": "2019-09-07T04:11:51Z", + "closed_at": "2019-09-07T04:11:51Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/79", + "html_url": "https://github.com/github-api-test-org/github-api/pull/79", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/79.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/79.patch" + }, + "body": "## test" + } + }, + { + "id": 2615979257, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTI1Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979257", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:11:47Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/78", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/78/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/78/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/78/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/78", + "id": 490588786, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0Nzc5", + "number": 78, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:11:45Z", + "updated_at": "2019-09-07T04:11:47Z", + "closed_at": "2019-09-07T04:11:47Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/78", + "html_url": "https://github.com/github-api-test-org/github-api/pull/78", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/78.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/78.patch" + }, + "body": "## test" + } + }, + { + "id": 2615979229, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTIyOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979229", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:11:43Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/77", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/77/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/77/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/77/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/77", + "id": 490588781, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0Nzc2", + "number": 77, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:11:42Z", + "updated_at": "2019-09-07T04:11:43Z", + "closed_at": "2019-09-07T04:11:43Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/77", + "html_url": "https://github.com/github-api-test-org/github-api/pull/77", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/77.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/77.patch" + }, + "body": "## test" + } + }, + { + "id": 2615979184, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTE4NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979184", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:11:38Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/75", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/75/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/75/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/75/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/75", + "id": 490588772, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NzY4", + "number": 75, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:11:35Z", + "updated_at": "2019-09-07T04:11:38Z", + "closed_at": "2019-09-07T04:11:38Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/75", + "html_url": "https://github.com/github-api-test-org/github-api/pull/75", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/75.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/75.patch" + }, + "body": null + } + }, + { + "id": 2615979179, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTE3OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979179", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:11:38Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/76", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/76/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/76/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/76/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/76", + "id": 490588773, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NzY5", + "number": 76, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:11:36Z", + "updated_at": "2019-09-07T04:11:38Z", + "closed_at": "2019-09-07T04:11:38Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/76", + "html_url": "https://github.com/github-api-test-org/github-api/pull/76", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/76.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/76.patch" + }, + "body": null + } + }, + { + "id": 2615979148, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3OTE0OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615979148", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:11:34Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/74", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/74/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/74/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/74/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/74", + "id": 490588760, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NzU5", + "number": 74, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:11:30Z", + "updated_at": "2019-09-07T04:11:34Z", + "closed_at": "2019-09-07T04:11:34Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/74", + "html_url": "https://github.com/github-api-test-org/github-api/pull/74", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/74.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/74.patch" + }, + "body": "## test" + } + }, + { + "id": 2615977722, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzcyMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977722", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:07:20Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/73", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/73/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/73/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/73/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/73", + "id": 490588408, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NTIw", + "number": 73, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:07:19Z", + "updated_at": "2019-09-07T04:07:20Z", + "closed_at": "2019-09-07T04:07:20Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/73", + "html_url": "https://github.com/github-api-test-org/github-api/pull/73", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/73.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/73.patch" + }, + "body": "## test" + } + }, + { + "id": 2615977710, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzcxMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977710", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:07:17Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/72", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/72/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/72/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/72/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/72", + "id": 490588405, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NTE3", + "number": 72, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:07:15Z", + "updated_at": "2019-09-07T04:07:17Z", + "closed_at": "2019-09-07T04:07:17Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/72", + "html_url": "https://github.com/github-api-test-org/github-api/pull/72", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/72.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/72.patch" + }, + "body": "## test" + } + }, + { + "id": 2615977698, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE1OTc3Njk4", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977698", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:07:16Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/72", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/72/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/72/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/72/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/72", + "id": 490588405, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NTE3", + "number": 72, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:07:15Z", + "updated_at": "2019-09-07T04:07:17Z", + "closed_at": "2019-09-07T04:07:17Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/72", + "html_url": "https://github.com/github-api-test-org/github-api/pull/72", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/72.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/72.patch" + }, + "body": "## test" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-ba4c9486-0956-4ea0-b5bf-f9189cf60bf9.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-ba4c9486-0956-4ea0-b5bf-f9189cf60bf9.json new file mode 100644 index 000000000..2d9d6b1b9 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-ba4c9486-0956-4ea0-b5bf-f9189cf60bf9.json @@ -0,0 +1,2372 @@ +[ + { + "id": 2616452978, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Mjk3OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452978", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:38Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/165", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/165/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/165/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/165/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/165", + "id": 490688051, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzM4", + "number": 165, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:36Z", + "updated_at": "2019-09-07T22:49:38Z", + "closed_at": "2019-09-07T22:49:38Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/165", + "html_url": "https://github.com/github-api-test-org/github-api/pull/165", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/165.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/165.patch" + }, + "body": "## test" + } + }, + { + "id": 2616452966, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Mjk2Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452966", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:34Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/164", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/164/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/164/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/164/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/164", + "id": 490688048, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzM3", + "number": 164, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:33Z", + "updated_at": "2019-09-07T22:49:34Z", + "closed_at": "2019-09-07T22:49:34Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/164", + "html_url": "https://github.com/github-api-test-org/github-api/pull/164", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/164.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/164.patch" + }, + "body": "## test" + } + }, + { + "id": 2616452961, + "node_id": "MDE5OkhlYWRSZWZEZWxldGVkRXZlbnQyNjE2NDUyOTYx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452961", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "head_ref_deleted", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:32Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/163", + "id": 490688043, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzMz", + "number": 163, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:28Z", + "updated_at": "2019-09-07T22:49:32Z", + "closed_at": "2019-09-07T22:49:31Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/163", + "html_url": "https://github.com/github-api-test-org/github-api/pull/163", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/163.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/163.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616452956, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1Mjk1Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452956", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:31Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/163", + "id": 490688043, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzMz", + "number": 163, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:28Z", + "updated_at": "2019-09-07T22:49:32Z", + "closed_at": "2019-09-07T22:49:31Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/163", + "html_url": "https://github.com/github-api-test-org/github-api/pull/163", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/163.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/163.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616452955, + "node_id": "MDExOk1lcmdlZEV2ZW50MjYxNjQ1Mjk1NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452955", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "merged", + "commit_id": "baeb03370762a645d682dee5bc29dd97709829db", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/baeb03370762a645d682dee5bc29dd97709829db", + "created_at": "2019-09-07T22:49:31Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/163", + "id": 490688043, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzMz", + "number": 163, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:28Z", + "updated_at": "2019-09-07T22:49:32Z", + "closed_at": "2019-09-07T22:49:31Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/163", + "html_url": "https://github.com/github-api-test-org/github-api/pull/163", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/163.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/163.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616452954, + "node_id": "MDE1OlJlZmVyZW5jZWRFdmVudDI2MTY0NTI5NTQ=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452954", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "referenced", + "commit_id": "baeb03370762a645d682dee5bc29dd97709829db", + "commit_url": "https://api.github.com/repos/github-api-test-org/github-api/commits/baeb03370762a645d682dee5bc29dd97709829db", + "created_at": "2019-09-07T22:49:31Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/163/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/163", + "id": 490688043, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzMz", + "number": 163, + "title": "updateContentSquashMerge", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:28Z", + "updated_at": "2019-09-07T22:49:32Z", + "closed_at": "2019-09-07T22:49:31Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/163", + "html_url": "https://github.com/github-api-test-org/github-api/pull/163", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/163.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/163.patch" + }, + "body": "## test squash" + } + }, + { + "id": 2616452924, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MjkyNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452924", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:23Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/161", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/161/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/161/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/161/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/161", + "id": 490688036, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzI5", + "number": 161, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:20Z", + "updated_at": "2019-09-07T22:49:23Z", + "closed_at": "2019-09-07T22:49:23Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/161", + "html_url": "https://github.com/github-api-test-org/github-api/pull/161", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/161.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/161.patch" + }, + "body": null + } + }, + { + "id": 2616452921, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MjkyMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452921", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:22Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/162", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/162/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/162/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/162/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/162", + "id": 490688037, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzMw", + "number": 162, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:21Z", + "updated_at": "2019-09-07T22:49:22Z", + "closed_at": "2019-09-07T22:49:22Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/162", + "html_url": "https://github.com/github-api-test-org/github-api/pull/162", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/162.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/162.patch" + }, + "body": null + } + }, + { + "id": 2616452909, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MjkwOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452909", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:49:18Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/160", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/160/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/160/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/160/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/160", + "id": 490688032, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMzI2", + "number": 160, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:49:14Z", + "updated_at": "2019-09-07T22:49:18Z", + "closed_at": "2019-09-07T22:49:18Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/160", + "html_url": "https://github.com/github-api-test-org/github-api/pull/160", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/160.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/160.patch" + }, + "body": "## test" + } + }, + { + "id": 2616452302, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MjMwMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452302", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:46:52Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/158", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/158/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/158/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/158/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/158", + "id": 490687857, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMTk0", + "number": 158, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:46:50Z", + "updated_at": "2019-09-07T22:46:52Z", + "closed_at": "2019-09-07T22:46:52Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/158", + "html_url": "https://github.com/github-api-test-org/github-api/pull/158", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/158.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/158.patch" + }, + "body": null + } + }, + { + "id": 2616452299, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MjI5OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452299", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:46:52Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/159", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/159/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/159/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/159/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/159", + "id": 490687860, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMTk3", + "number": 159, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:46:51Z", + "updated_at": "2019-09-07T22:46:52Z", + "closed_at": "2019-09-07T22:46:52Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/159", + "html_url": "https://github.com/github-api-test-org/github-api/pull/159", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/159.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/159.patch" + }, + "body": null + } + }, + { + "id": 2616452255, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MjI1NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452255", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:46:39Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/157", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/157/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/157/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/157/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/157", + "id": 490687837, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMTgw", + "number": 157, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:46:35Z", + "updated_at": "2019-09-07T22:46:39Z", + "closed_at": "2019-09-07T22:46:39Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/157", + "html_url": "https://github.com/github-api-test-org/github-api/pull/157", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/157.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/157.patch" + }, + "body": "## test" + } + }, + { + "id": 2616452012, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MjAxMg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616452012", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:45:42Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/156", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/156/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/156/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/156/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/156", + "id": 490687771, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMTM4", + "number": 156, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:45:39Z", + "updated_at": "2019-09-07T22:45:42Z", + "closed_at": "2019-09-07T22:45:42Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/156", + "html_url": "https://github.com/github-api-test-org/github-api/pull/156", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/156.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/156.patch" + }, + "body": "## test" + } + }, + { + "id": 2616451777, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MTc3Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616451777", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:44:42Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/155", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/155/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/155/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/155/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/155", + "id": 490687709, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMDkz", + "number": 155, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:44:40Z", + "updated_at": "2019-09-07T22:44:42Z", + "closed_at": "2019-09-07T22:44:42Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/155", + "html_url": "https://github.com/github-api-test-org/github-api/pull/155", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/155.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/155.patch" + }, + "body": null + } + }, + { + "id": 2616451775, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MTc3NQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616451775", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:44:42Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/154", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/154/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/154/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/154/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/154", + "id": 490687708, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMDky", + "number": 154, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:44:40Z", + "updated_at": "2019-09-07T22:44:42Z", + "closed_at": "2019-09-07T22:44:42Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/154", + "html_url": "https://github.com/github-api-test-org/github-api/pull/154", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/154.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/154.patch" + }, + "body": null + } + }, + { + "id": 2616451708, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MTcwOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616451708", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:44:34Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/153", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/153/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/153/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/153/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/153", + "id": 490687694, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjMwMDgy", + "number": 153, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:44:30Z", + "updated_at": "2019-09-07T22:44:33Z", + "closed_at": "2019-09-07T22:44:33Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/153", + "html_url": "https://github.com/github-api-test-org/github-api/pull/153", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/153.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/153.patch" + }, + "body": "## test" + } + }, + { + "id": 2616450961, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MDk2MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616450961", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:42:06Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/151", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/151/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/151/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/151/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/151", + "id": 490687530, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjI5OTc1", + "number": 151, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:42:03Z", + "updated_at": "2019-09-07T22:42:06Z", + "closed_at": "2019-09-07T22:42:06Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/151", + "html_url": "https://github.com/github-api-test-org/github-api/pull/151", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/151.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/151.patch" + }, + "body": null + } + }, + { + "id": 2616450959, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MDk1OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616450959", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:42:06Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/152", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/152/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/152/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/152/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/152", + "id": 490687531, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjI5OTc2", + "number": 152, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:42:04Z", + "updated_at": "2019-09-07T22:42:06Z", + "closed_at": "2019-09-07T22:42:06Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/152", + "html_url": "https://github.com/github-api-test-org/github-api/pull/152", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/152.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/152.patch" + }, + "body": null + } + }, + { + "id": 2616450670, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ1MDY3MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616450670", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:41:07Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/150", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/150/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/150/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/150/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/150", + "id": 490687470, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjI5OTM2", + "number": 150, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:41:03Z", + "updated_at": "2019-09-07T22:41:07Z", + "closed_at": "2019-09-07T22:41:07Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/150", + "html_url": "https://github.com/github-api-test-org/github-api/pull/150", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/150.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/150.patch" + }, + "body": "## test" + } + }, + { + "id": 2616449799, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ0OTc5OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616449799", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:38:11Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/149", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/149/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/149/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/149/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/149", + "id": 490687271, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjI5ODA1", + "number": 149, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:38:07Z", + "updated_at": "2019-09-07T22:38:11Z", + "closed_at": "2019-09-07T22:38:11Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/149", + "html_url": "https://github.com/github-api-test-org/github-api/pull/149", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/149.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/149.patch" + }, + "body": "## test" + } + }, + { + "id": 2616448841, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ0ODg0MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616448841", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:34:36Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/148", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/148/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/148/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/148/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/148", + "id": 490687031, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjI5NjM0", + "number": 148, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:34:35Z", + "updated_at": "2019-09-07T22:34:36Z", + "closed_at": "2019-09-07T22:34:36Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/148", + "html_url": "https://github.com/github-api-test-org/github-api/pull/148", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/148.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/148.patch" + }, + "body": "## test" + } + }, + { + "id": 2616444870, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ0NDg3MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616444870", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:20:52Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/147", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/147/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/147/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/147/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/147", + "id": 490686065, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjI4OTk3", + "number": 147, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:20:51Z", + "updated_at": "2019-09-07T22:20:52Z", + "closed_at": "2019-09-07T22:20:52Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/147", + "html_url": "https://github.com/github-api-test-org/github-api/pull/147", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/147.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/147.patch" + }, + "body": "## test" + } + }, + { + "id": 2616441556, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQ0MTU1Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616441556", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T22:10:01Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/146", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/146/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/146/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/146/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/146", + "id": 490685323, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjI4NDk1", + "number": 146, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T22:10:00Z", + "updated_at": "2019-09-07T22:10:01Z", + "closed_at": "2019-09-07T22:10:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/146", + "html_url": "https://github.com/github-api-test-org/github-api/pull/146", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/146.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/146.patch" + }, + "body": "## test" + } + }, + { + "id": 2616432191, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQzMjE5MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616432191", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T21:43:42Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/145", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/145/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/145/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/145/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/145", + "id": 490683327, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjI3MTE4", + "number": 145, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T21:43:41Z", + "updated_at": "2019-09-07T21:43:42Z", + "closed_at": "2019-09-07T21:43:42Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/145", + "html_url": "https://github.com/github-api-test-org/github-api/pull/145", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/145.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/145.patch" + }, + "body": "## test" + } + }, + { + "id": 2616419418, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQxOTQxOA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616419418", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T21:07:53Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/144", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/144/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/144/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/144/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/144", + "id": 490680475, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjI1MjAx", + "number": 144, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T21:07:52Z", + "updated_at": "2019-09-07T21:07:53Z", + "closed_at": "2019-09-07T21:07:53Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/144", + "html_url": "https://github.com/github-api-test-org/github-api/pull/144", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/144.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/144.patch" + }, + "body": "## test" + } + }, + { + "id": 2616411404, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjQxMTQwNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616411404", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T20:46:03Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/143", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/143/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/143/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/143/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/143", + "id": 490678684, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjIzOTk0", + "number": 143, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T20:46:02Z", + "updated_at": "2019-09-07T20:46:03Z", + "closed_at": "2019-09-07T20:46:03Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/143", + "html_url": "https://github.com/github-api-test-org/github-api/pull/143", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/143.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/143.patch" + }, + "body": "## test" + } + }, + { + "id": 2616393850, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjM5Mzg1MA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616393850", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T20:02:45Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/142", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/142/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/142/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/142/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/142", + "id": 490674814, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjIxNDEy", + "number": 142, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T20:02:44Z", + "updated_at": "2019-09-07T20:02:45Z", + "closed_at": "2019-09-07T20:02:45Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/142", + "html_url": "https://github.com/github-api-test-org/github-api/pull/142", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/142.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/142.patch" + }, + "body": "## test" + } + }, + { + "id": 2616393073, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjM5MzA3Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616393073", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T20:00:57Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/141", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/141/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/141/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/141/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/141", + "id": 490674583, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjIxMjkz", + "number": 141, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T20:00:56Z", + "updated_at": "2019-09-07T20:00:57Z", + "closed_at": "2019-09-07T20:00:57Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/141", + "html_url": "https://github.com/github-api-test-org/github-api/pull/141", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/141.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/141.patch" + }, + "body": "## test" + } + }, + { + "id": 2616393006, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjM5MzAwNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616393006", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T20:00:47Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/140", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/140/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/140/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/140/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/140", + "id": 490674562, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjIxMjc5", + "number": 140, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T20:00:46Z", + "updated_at": "2019-09-07T20:00:47Z", + "closed_at": "2019-09-07T20:00:47Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/140", + "html_url": "https://github.com/github-api-test-org/github-api/pull/140", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/140.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/140.patch" + }, + "body": "## test" + } + }, + { + "id": 2616391494, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNjM5MTQ5NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2616391494", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T19:57:10Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/139", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/139/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/139/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/139/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/139", + "id": 490674248, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MjIxMDc4", + "number": 139, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T19:57:08Z", + "updated_at": "2019-09-07T19:57:10Z", + "closed_at": "2019-09-07T19:57:10Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/139", + "html_url": "https://github.com/github-api-test-org/github-api/pull/139", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/139.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/139.patch" + }, + "body": "## test" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-df3c06e8-3b9a-46e5-bf28-43f6632eda7c.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-df3c06e8-3b9a-46e5-bf28-43f6632eda7c.json new file mode 100644 index 000000000..d04cb6e23 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/__files/repositories_206888201_issues_events-df3c06e8-3b9a-46e5-bf28-43f6632eda7c.json @@ -0,0 +1,2558 @@ +[ + { + "id": 2615977678, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzY3OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977678", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:07:13Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/71", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/71/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/71/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/71/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/71", + "id": 490588400, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NTEz", + "number": 71, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T04:07:12Z", + "updated_at": "2019-09-07T04:07:13Z", + "closed_at": "2019-09-07T04:07:13Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/71", + "html_url": "https://github.com/github-api-test-org/github-api/pull/71", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/71.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/71.patch" + }, + "body": "## test" + } + }, + { + "id": 2615977659, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzY1OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977659", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:07:11Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/69", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/69/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/69/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/69/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/69", + "id": 490588394, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NTA4", + "number": 69, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:07:08Z", + "updated_at": "2019-09-07T04:07:11Z", + "closed_at": "2019-09-07T04:07:11Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/69", + "html_url": "https://github.com/github-api-test-org/github-api/pull/69", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/69.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/69.patch" + }, + "body": null + } + }, + { + "id": 2615977657, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzY1Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977657", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:07:10Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/70", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/70/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/70/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/70/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/70", + "id": 490588396, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NTA5", + "number": 70, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:07:09Z", + "updated_at": "2019-09-07T04:07:10Z", + "closed_at": "2019-09-07T04:07:10Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/70", + "html_url": "https://github.com/github-api-test-org/github-api/pull/70", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/70.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/70.patch" + }, + "body": null + } + }, + { + "id": 2615977615, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzYxNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977615", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:07:05Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/68", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/68/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/68/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/68/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/68", + "id": 490588385, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NTAx", + "number": 68, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:07:03Z", + "updated_at": "2019-09-07T04:07:05Z", + "closed_at": "2019-09-07T04:07:05Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/68", + "html_url": "https://github.com/github-api-test-org/github-api/pull/68", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/68.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/68.patch" + }, + "body": "## test" + } + }, + { + "id": 2615977601, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzYwMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977601", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:07:01Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/67", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/67/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/67/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/67/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/67", + "id": 490588382, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDk4", + "number": 67, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:06:58Z", + "updated_at": "2019-09-07T04:07:01Z", + "closed_at": "2019-09-07T04:07:01Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/67", + "html_url": "https://github.com/github-api-test-org/github-api/pull/67", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/67.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/67.patch" + }, + "body": "## test" + } + }, + { + "id": 2615977576, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzU3Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977576", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:06:56Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/66", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/66/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/66/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/66/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/66", + "id": 490588375, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDkz", + "number": 66, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:06:54Z", + "updated_at": "2019-09-07T04:06:56Z", + "closed_at": "2019-09-07T04:06:56Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/66", + "html_url": "https://github.com/github-api-test-org/github-api/pull/66", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/66.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/66.patch" + }, + "body": "## test" + } + }, + { + "id": 2615977568, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTU5Nzc1Njg=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977568", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:06:55Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/66", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/66/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/66/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/66/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/66", + "id": 490588375, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDkz", + "number": 66, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:06:54Z", + "updated_at": "2019-09-07T04:06:56Z", + "closed_at": "2019-09-07T04:06:56Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/66", + "html_url": "https://github.com/github-api-test-org/github-api/pull/66", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/66.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/66.patch" + }, + "body": "## test" + } + }, + { + "id": 2615977559, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzU1OQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977559", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:06:53Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/65", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/65/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/65/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/65/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/65", + "id": 490588369, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDg4", + "number": 65, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:06:50Z", + "updated_at": "2019-09-07T04:06:53Z", + "closed_at": "2019-09-07T04:06:53Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/65", + "html_url": "https://github.com/github-api-test-org/github-api/pull/65", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/65.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/65.patch" + }, + "body": "## test" + } + }, + { + "id": 2615977535, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzUzNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977535", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:06:49Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/64", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/64/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/64/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/64/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/64", + "id": 490588363, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDg0", + "number": 64, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:06:48Z", + "updated_at": "2019-09-07T04:06:49Z", + "closed_at": "2019-09-07T04:06:49Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/64", + "html_url": "https://github.com/github-api-test-org/github-api/pull/64", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/64.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/64.patch" + }, + "body": "## test" + } + }, + { + "id": 2615977446, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzQ0Ng==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977446", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:06:45Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/63", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/63/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/63/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/63/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/63", + "id": 490588352, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDc3", + "number": 63, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:06:42Z", + "updated_at": "2019-09-07T04:06:45Z", + "closed_at": "2019-09-07T04:06:45Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/63", + "html_url": "https://github.com/github-api-test-org/github-api/pull/63", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/63.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/63.patch" + }, + "body": null + } + }, + { + "id": 2615977439, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzQzOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977439", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:06:44Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/62", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/62/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/62/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/62/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/62", + "id": 490588350, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDc1", + "number": 62, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:06:42Z", + "updated_at": "2019-09-07T04:06:44Z", + "closed_at": "2019-09-07T04:06:44Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/62", + "html_url": "https://github.com/github-api-test-org/github-api/pull/62", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/62.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/62.patch" + }, + "body": null + } + }, + { + "id": 2615977415, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NzQxNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615977415", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:06:40Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/61", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/61/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/61/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/61/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/61", + "id": 490588274, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDIx", + "number": 61, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:05:43Z", + "updated_at": "2019-09-07T04:06:40Z", + "closed_at": "2019-09-07T04:06:40Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/61", + "html_url": "https://github.com/github-api-test-org/github-api/pull/61", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/61.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/61.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976947, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3Njk0Nw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976947", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:05:41Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/60", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/60/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/60/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/60/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/60", + "id": 490588265, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDE0", + "number": 60, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:05:37Z", + "updated_at": "2019-09-07T04:05:41Z", + "closed_at": "2019-09-07T04:05:41Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/60", + "html_url": "https://github.com/github-api-test-org/github-api/pull/60", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/60.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/60.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976907, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjkwNw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976907", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:05:36Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/59", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/59/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/59/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/59/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/59", + "id": 490588260, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDA5", + "number": 59, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:05:33Z", + "updated_at": "2019-09-07T04:05:36Z", + "closed_at": "2019-09-07T04:05:36Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/59", + "html_url": "https://github.com/github-api-test-org/github-api/pull/59", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/59.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/59.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976898, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTU5NzY4OTg=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976898", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:05:34Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/59", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/59/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/59/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/59/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/59", + "id": 490588260, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDA5", + "number": 59, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:05:33Z", + "updated_at": "2019-09-07T04:05:36Z", + "closed_at": "2019-09-07T04:05:36Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/59", + "html_url": "https://github.com/github-api-test-org/github-api/pull/59", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/59.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/59.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976883, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3Njg4Mw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976883", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:05:32Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/58", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/58/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/58/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/58/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/58", + "id": 490588254, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDA0", + "number": 58, + "title": "getUser", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:05:29Z", + "updated_at": "2019-09-07T04:05:32Z", + "closed_at": "2019-09-07T04:05:32Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/58", + "html_url": "https://github.com/github-api-test-org/github-api/pull/58", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/58.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/58.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976861, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3Njg2MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976861", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:05:28Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/57", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/57/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/57/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/57/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/57", + "id": 490588252, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0NDAy", + "number": 57, + "title": "createPullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:05:27Z", + "updated_at": "2019-09-07T04:05:28Z", + "closed_at": "2019-09-07T04:05:28Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/57", + "html_url": "https://github.com/github-api-test-org/github-api/pull/57", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/57.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/57.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976839, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjgzOQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976839", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:05:24Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/55", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/55/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/55/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/55/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/55", + "id": 490588243, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0Mzk1", + "number": 55, + "title": "queryPullRequestsQualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:05:21Z", + "updated_at": "2019-09-07T04:05:24Z", + "closed_at": "2019-09-07T04:05:24Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/55", + "html_url": "https://github.com/github-api-test-org/github-api/pull/55", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/55.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/55.patch" + }, + "body": null + } + }, + { + "id": 2615976833, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjgzMw==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976833", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:05:23Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/56", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/56/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/56/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/56/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/56", + "id": 490588244, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0Mzk2", + "number": 56, + "title": "queryPullRequestsQualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:05:22Z", + "updated_at": "2019-09-07T04:05:23Z", + "closed_at": "2019-09-07T04:05:23Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/56", + "html_url": "https://github.com/github-api-test-org/github-api/pull/56", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/56.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/56.patch" + }, + "body": null + } + }, + { + "id": 2615976801, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjgwMQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976801", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:05:20Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/54", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/54/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/54/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/54/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/54", + "id": 490588234, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0Mzg5", + "number": 54, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:05:16Z", + "updated_at": "2019-09-07T04:05:20Z", + "closed_at": "2019-09-07T04:05:20Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/54", + "html_url": "https://github.com/github-api-test-org/github-api/pull/54", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/54.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/54.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976474, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjQ3NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976474", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:04:21Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/53", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/53/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/53/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/53/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/53", + "id": 490588172, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzQz", + "number": 53, + "title": "closePullRequest", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:04:19Z", + "updated_at": "2019-09-07T04:04:21Z", + "closed_at": "2019-09-07T04:04:21Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/53", + "html_url": "https://github.com/github-api-test-org/github-api/pull/53", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/53.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/53.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976458, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjQ1OA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976458", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:04:17Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/52", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/52/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/52/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/52/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/52", + "id": 490588164, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzM1", + "number": 52, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:04:15Z", + "updated_at": "2019-09-07T04:04:17Z", + "closed_at": "2019-09-07T04:04:17Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/52", + "html_url": "https://github.com/github-api-test-org/github-api/pull/52", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/52.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/52.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976443, + "node_id": "MDEzOkFzc2lnbmVkRXZlbnQyNjE1OTc2NDQz", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976443", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "assigned", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:04:16Z", + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assigner": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/52", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/52/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/52/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/52/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/52", + "id": 490588164, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzM1", + "number": 52, + "title": "setAssignee", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "assignees": [ + { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + } + ], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:04:15Z", + "updated_at": "2019-09-07T04:04:17Z", + "closed_at": "2019-09-07T04:04:17Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/52", + "html_url": "https://github.com/github-api-test-org/github-api/pull/52", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/52.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/52.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976426, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjQyNg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976426", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:04:13Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/51", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/51/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/51/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/51/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/51", + "id": 490588157, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzMw", + "number": 51, + "title": "createPullRequestComment", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 1, + "created_at": "2019-09-07T04:04:12Z", + "updated_at": "2019-09-07T04:04:13Z", + "closed_at": "2019-09-07T04:04:13Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/51", + "html_url": "https://github.com/github-api-test-org/github-api/pull/51", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/51.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/51.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976392, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjM5Mg==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976392", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:04:10Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/49", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/49/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/49/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/49/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/49", + "id": 490588148, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzI1", + "number": 49, + "title": "queryPullRequestsUnqualifiedHead_stable", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:04:07Z", + "updated_at": "2019-09-07T04:04:10Z", + "closed_at": "2019-09-07T04:04:10Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/49", + "html_url": "https://github.com/github-api-test-org/github-api/pull/49", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/49.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/49.patch" + }, + "body": null + } + }, + { + "id": 2615976391, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjM5MQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976391", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:04:10Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/50", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/50/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/50/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/50/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/50", + "id": 490588151, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzI3", + "number": 50, + "title": "queryPullRequestsUnqualifiedHead_rc", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:04:08Z", + "updated_at": "2019-09-07T04:04:10Z", + "closed_at": "2019-09-07T04:04:10Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/50", + "html_url": "https://github.com/github-api-test-org/github-api/pull/50", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/50.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/50.patch" + }, + "body": null + } + }, + { + "id": 2615976354, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjM1NA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976354", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:04:04Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/48", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/48/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/48/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/48/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/48", + "id": 490588140, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzE4", + "number": 48, + "title": "pullRequestReviewComments", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:04:02Z", + "updated_at": "2019-09-07T04:04:04Z", + "closed_at": "2019-09-07T04:04:04Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/48", + "html_url": "https://github.com/github-api-test-org/github-api/pull/48", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/48.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/48.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976335, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjMzNQ==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976335", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:04:00Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/47", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/47/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/47/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/47/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/47", + "id": 490588134, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzEz", + "number": 47, + "title": "mergeCommitSHA", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:03:56Z", + "updated_at": "2019-09-07T04:04:00Z", + "closed_at": "2019-09-07T04:04:00Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/47", + "html_url": "https://github.com/github-api-test-org/github-api/pull/47", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/47.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/47.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976304, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTk3NjMwNA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976304", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:03:55Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/46", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/46/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/46/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/46/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/46", + "id": 490588129, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzEw", + "number": 46, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:03:52Z", + "updated_at": "2019-09-07T04:03:54Z", + "closed_at": "2019-09-07T04:03:54Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/46", + "html_url": "https://github.com/github-api-test-org/github-api/pull/46", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/46.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/46.patch" + }, + "body": "## test" + } + }, + { + "id": 2615976298, + "node_id": "MDEyOkxhYmVsZWRFdmVudDI2MTU5NzYyOTg=", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615976298", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "labeled", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T04:03:53Z", + "label": { + "name": "setLabels_label_name", + "color": "ededed" + }, + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/46", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/46/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/46/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/46/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/46", + "id": 490588129, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTY0MzEw", + "number": 46, + "title": "setLabels", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [ + { + "id": 1541702441, + "node_id": "MDU6TGFiZWwxNTQxNzAyNDQx", + "url": "https://api.github.com/repos/github-api-test-org/github-api/labels/setLabels_label_name", + "name": "setLabels_label_name", + "color": "ededed", + "default": false + } + ], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T04:03:52Z", + "updated_at": "2019-09-07T04:03:54Z", + "closed_at": "2019-09-07T04:03:54Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/46", + "html_url": "https://github.com/github-api-test-org/github-api/pull/46", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/46.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/46.patch" + }, + "body": "## test" + } + } +] \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/orgs_github-api-test-org-1-271bc7.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/orgs_github-api-test-org-1-271bc7.json new file mode 100644 index 000000000..d74b3b4df --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/orgs_github-api-test-org-1-271bc7.json @@ -0,0 +1,41 @@ +{ + "id": "271bc78a-da92-4b95-978e-696a960ae591", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-271bc78a-da92-4b95-978e-696a960ae591.json", + "headers": { + "Date": "Wed, 09 Oct 2019 01:56:31 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4920", + "X-RateLimit-Reset": "1570589791", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"4342e0e7004c1a50986c767513fe857d\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "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": "E759:0CA5:FE78AD:126F654:5D9D3E4F" + } + }, + "uuid": "271bc78a-da92-4b95-978e-696a960ae591", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repos_github-api-test-org_github-api-2-ed242e.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repos_github-api-test-org_github-api-2-ed242e.json new file mode 100644 index 000000000..a09e8869c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repos_github-api-test-org_github-api-2-ed242e.json @@ -0,0 +1,41 @@ +{ + "id": "ed242e3b-40a3-40ac-bf20-e3b9f26f2808", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-ed242e3b-40a3-40ac-bf20-e3b9f26f2808.json", + "headers": { + "Date": "Wed, 09 Oct 2019 01:56:33 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4919", + "X-RateLimit-Reset": "1570589791", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"21451633d882317175c1eaa6ef532c2e\"", + "Last-Modified": "Mon, 30 Sep 2019 22:36:47 GMT", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "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": "E759:0CA5:FE78DE:126F663:5D9D3E4F" + } + }, + "uuid": "ed242e3b-40a3-40ac-bf20-e3b9f26f2808", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repos_github-api-test-org_github-api_issues_events-3-55f594.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repos_github-api-test-org_github-api_issues_events-3-55f594.json new file mode 100644 index 000000000..b22c39c55 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repos_github-api-test-org_github-api_issues_events-3-55f594.json @@ -0,0 +1,41 @@ +{ + "id": "55f59417-2e95-45c8-8ae0-7920e8f45eec", + "name": "repos_github-api-test-org_github-api_issues_events", + "request": { + "url": "/repos/github-api-test-org/github-api/issues/events", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_issues_events-55f59417-2e95-45c8-8ae0-7920e8f45eec.json", + "headers": { + "Date": "Wed, 09 Oct 2019 01:56:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4918", + "X-RateLimit-Reset": "1570589791", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"0375e2d44e8aede31af2dc8e824d9b02\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "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": "E759:0CA5:FE78F6:126F69D:5D9D3E51", + "Link": "; rel=\"next\", ; rel=\"last\"" + } + }, + "uuid": "55f59417-2e95-45c8-8ae0-7920e8f45eec", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-10-ba4c94.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-10-ba4c94.json new file mode 100644 index 000000000..9a7b02129 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-10-ba4c94.json @@ -0,0 +1,41 @@ +{ + "id": "ba4c9486-0956-4ea0-b5bf-f9189cf60bf9", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=8", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-ba4c9486-0956-4ea0-b5bf-f9189cf60bf9.json", + "headers": { + "Date": "Wed, 09 Oct 2019 01:56:38 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4911", + "X-RateLimit-Reset": "1570589791", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"38486b5baff11610a474d248e79180f4\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "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": "E759:0CA5:FE7979:126F738:5D9D3E55", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "ba4c9486-0956-4ea0-b5bf-f9189cf60bf9", + "persistent": true, + "insertionIndex": 10 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-11-11f3c1.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-11-11f3c1.json new file mode 100644 index 000000000..0c81f6626 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-11-11f3c1.json @@ -0,0 +1,41 @@ +{ + "id": "11f3c150-f073-4465-8fe4-8641211cc487", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=9", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-11f3c150-f073-4465-8fe4-8641211cc487.json", + "headers": { + "Date": "Wed, 09 Oct 2019 01:56:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4910", + "X-RateLimit-Reset": "1570589791", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"dc3ff8ce3b8e37163890532c35ee102d\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "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": "E759:0CA5:FE798C:126F74E:5D9D3E56", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "11f3c150-f073-4465-8fe4-8641211cc487", + "persistent": true, + "insertionIndex": 11 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-12-28bf30.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-12-28bf30.json new file mode 100644 index 000000000..354da677e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-12-28bf30.json @@ -0,0 +1,41 @@ +{ + "id": "28bf30e8-7f42-4162-b82e-32ceb6a08384", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=10", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-28bf30e8-7f42-4162-b82e-32ceb6a08384.json", + "headers": { + "Date": "Wed, 09 Oct 2019 01:56:39 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4909", + "X-RateLimit-Reset": "1570589791", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f5d10a838d70d93ca2431ee631b88dbf\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "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": "E759:0CA5:FE799D:126F766:5D9D3E57", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "28bf30e8-7f42-4162-b82e-32ceb6a08384", + "persistent": true, + "insertionIndex": 12 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-13-b931f4.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-13-b931f4.json new file mode 100644 index 000000000..1e07155b4 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-13-b931f4.json @@ -0,0 +1,41 @@ +{ + "id": "b931f4bd-a59c-49c0-ba7f-8a99a948a343", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=11", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-b931f4bd-a59c-49c0-ba7f-8a99a948a343.json", + "headers": { + "Date": "Wed, 09 Oct 2019 01:56:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4908", + "X-RateLimit-Reset": "1570589791", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"ef8205ec974d18bf08ca73f0d9f68277\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "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": "E759:0CA5:FE79B1:126F77E:5D9D3E57", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "b931f4bd-a59c-49c0-ba7f-8a99a948a343", + "persistent": true, + "insertionIndex": 13 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-14-df3c06.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-14-df3c06.json new file mode 100644 index 000000000..0e2b436eb --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-14-df3c06.json @@ -0,0 +1,41 @@ +{ + "id": "df3c06e8-3b9a-46e5-bf28-43f6632eda7c", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=12", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-df3c06e8-3b9a-46e5-bf28-43f6632eda7c.json", + "headers": { + "Date": "Wed, 09 Oct 2019 01:56:40 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4907", + "X-RateLimit-Reset": "1570589791", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"caaf45367b81147264c7bf8dae7a5688\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "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": "E759:0CA5:FE79CC:126F79D:5D9D3E58", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "df3c06e8-3b9a-46e5-bf28-43f6632eda7c", + "persistent": true, + "insertionIndex": 14 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-15-50930d.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-15-50930d.json new file mode 100644 index 000000000..1a2fc6268 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-15-50930d.json @@ -0,0 +1,41 @@ +{ + "id": "50930d32-3438-48b2-be82-99d03bd48eab", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=13", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-50930d32-3438-48b2-be82-99d03bd48eab.json", + "headers": { + "Date": "Wed, 09 Oct 2019 01:56:41 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4906", + "X-RateLimit-Reset": "1570589791", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"b29a68ca950fa4f971cca5de8f828432\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "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": "E759:0CA5:FE79E3:126F7B6:5D9D3E58", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "50930d32-3438-48b2-be82-99d03bd48eab", + "persistent": true, + "insertionIndex": 15 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-16-8c3b4d.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-16-8c3b4d.json new file mode 100644 index 000000000..8dd6b779a --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-16-8c3b4d.json @@ -0,0 +1,41 @@ +{ + "id": "8c3b4d1c-5327-425f-8ee0-845cf8d3f9ca", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=14", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-8c3b4d1c-5327-425f-8ee0-845cf8d3f9ca.json", + "headers": { + "Date": "Wed, 09 Oct 2019 01:56:42 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4905", + "X-RateLimit-Reset": "1570589791", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"46e32ee676c614712890ec6aa5cb1e9b\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "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": "E759:0CA5:FE7A01:126F7D4:5D9D3E59", + "Link": "; rel=\"prev\", ; rel=\"first\"" + } + }, + "uuid": "8c3b4d1c-5327-425f-8ee0-845cf8d3f9ca", + "persistent": true, + "insertionIndex": 16 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-4-a808d7.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-4-a808d7.json new file mode 100644 index 000000000..8199e9d6b --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-4-a808d7.json @@ -0,0 +1,41 @@ +{ + "id": "a808d770-8f9c-44ae-bcbe-ebd3311bcce8", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=2", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-a808d770-8f9c-44ae-bcbe-ebd3311bcce8.json", + "headers": { + "Date": "Wed, 09 Oct 2019 01:56:34 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4917", + "X-RateLimit-Reset": "1570589791", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"f46f9bc23915a07c3039d28e02a9d5b1\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "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": "E759:0CA5:FE790F:126F6B6:5D9D3E52", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "a808d770-8f9c-44ae-bcbe-ebd3311bcce8", + "persistent": true, + "insertionIndex": 4 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-5-0dfa7d.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-5-0dfa7d.json new file mode 100644 index 000000000..229965e83 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-5-0dfa7d.json @@ -0,0 +1,41 @@ +{ + "id": "0dfa7d8f-eba8-4155-8604-ee86d335c3c0", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=3", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-0dfa7d8f-eba8-4155-8604-ee86d335c3c0.json", + "headers": { + "Date": "Wed, 09 Oct 2019 01:56:35 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4916", + "X-RateLimit-Reset": "1570589791", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"39e4636d72c03abb9d58bd2616fd4d23\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "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": "E759:0CA5:FE7921:126F6D2:5D9D3E52", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "0dfa7d8f-eba8-4155-8604-ee86d335c3c0", + "persistent": true, + "insertionIndex": 5 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-6-91934a.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-6-91934a.json new file mode 100644 index 000000000..89178cc6c --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-6-91934a.json @@ -0,0 +1,41 @@ +{ + "id": "91934a90-1c2f-4b03-b48f-8d919ca35a00", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=4", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-91934a90-1c2f-4b03-b48f-8d919ca35a00.json", + "headers": { + "Date": "Wed, 09 Oct 2019 01:56:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4915", + "X-RateLimit-Reset": "1570589791", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"2cd416c04b79868801a3ff2878641538\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "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": "E759:0CA5:FE7939:126F6E7:5D9D3E53", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "91934a90-1c2f-4b03-b48f-8d919ca35a00", + "persistent": true, + "insertionIndex": 6 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-7-13dd42.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-7-13dd42.json new file mode 100644 index 000000000..7a1c984e6 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-7-13dd42.json @@ -0,0 +1,41 @@ +{ + "id": "13dd42c1-51d3-40b5-b921-f99fb4be769a", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=5", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-13dd42c1-51d3-40b5-b921-f99fb4be769a.json", + "headers": { + "Date": "Wed, 09 Oct 2019 01:56:36 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4914", + "X-RateLimit-Reset": "1570589791", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"4e86cd5c818e71e21b47c35a5fa78bc1\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "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": "E759:0CA5:FE794A:126F6FD:5D9D3E54", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "13dd42c1-51d3-40b5-b921-f99fb4be769a", + "persistent": true, + "insertionIndex": 7 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-8-731175.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-8-731175.json new file mode 100644 index 000000000..800c68651 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-8-731175.json @@ -0,0 +1,41 @@ +{ + "id": "731175aa-fd44-4609-8ad4-202bf07f1092", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=6", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-731175aa-fd44-4609-8ad4-202bf07f1092.json", + "headers": { + "Date": "Wed, 09 Oct 2019 01:56:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4913", + "X-RateLimit-Reset": "1570589791", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"3bad46f7f7785c35309f76143b34796d\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "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": "E759:0CA5:FE7958:126F710:5D9D3E54", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "731175aa-fd44-4609-8ad4-202bf07f1092", + "persistent": true, + "insertionIndex": 8 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-9-28a5a6.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-9-28a5a6.json new file mode 100644 index 000000000..a564d84c2 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositoryEvents/mappings/repositories_206888201_issues_events-9-28a5a6.json @@ -0,0 +1,41 @@ +{ + "id": "28a5a658-444b-46e2-8e6b-f5abcd65269a", + "name": "repositories_206888201_issues_events", + "request": { + "url": "/repositories/206888201/issues/events?page=7", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repositories_206888201_issues_events-28a5a658-444b-46e2-8e6b-f5abcd65269a.json", + "headers": { + "Date": "Wed, 09 Oct 2019 01:56:37 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4912", + "X-RateLimit-Reset": "1570589791", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"a487c664c2a8ee7c099942f90d8731c9\"", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "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": "E759:0CA5:FE7968:126F721:5D9D3E55", + "Link": "; rel=\"prev\", ; rel=\"next\", ; rel=\"last\", ; rel=\"first\"" + } + }, + "uuid": "28a5a658-444b-46e2-8e6b-f5abcd65269a", + "persistent": true, + "insertionIndex": 9 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/__files/orgs_github-api-test-org-1be45f74-f7e1-46ab-a143-7277403c12fe.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/__files/orgs_github-api-test-org-1be45f74-f7e1-46ab-a143-7277403c12fe.json new file mode 100644 index 000000000..99b5920cc --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/__files/orgs_github-api-test-org-1be45f74-f7e1-46ab-a143-7277403c12fe.json @@ -0,0 +1,41 @@ +{ + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "url": "https://api.github.com/orgs/github-api-test-org", + "repos_url": "https://api.github.com/orgs/github-api-test-org/repos", + "events_url": "https://api.github.com/orgs/github-api-test-org/events", + "hooks_url": "https://api.github.com/orgs/github-api-test-org/hooks", + "issues_url": "https://api.github.com/orgs/github-api-test-org/issues", + "members_url": "https://api.github.com/orgs/github-api-test-org/members{/member}", + "public_members_url": "https://api.github.com/orgs/github-api-test-org/public_members{/member}", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "description": null, + "is_verified": false, + "has_organization_projects": true, + "has_repository_projects": true, + "public_repos": 10, + "public_gists": 0, + "followers": 0, + "following": 0, + "html_url": "https://github.com/github-api-test-org", + "created_at": "2014-05-10T19:39:11Z", + "updated_at": "2015-04-20T00:42:30Z", + "type": "Organization", + "total_private_repos": 0, + "owned_private_repos": 0, + "private_gists": 0, + "disk_usage": 132, + "collaborators": 0, + "billing_email": "kk@kohsuke.org", + "default_repository_permission": "none", + "members_can_create_repositories": false, + "two_factor_requirement_enabled": false, + "plan": { + "name": "free", + "space": 976562499, + "private_repos": 0, + "filled_seats": 7, + "seats": 0 + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/__files/repos_github-api-test-org_github-api-e79c57ab-6e11-40b0-b4ae-f4be4e7e86e0.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/__files/repos_github-api-test-org_github-api-e79c57ab-6e11-40b0-b4ae-f4be4e7e86e0.json new file mode 100644 index 000000000..3335aeaf3 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/__files/repos_github-api-test-org_github-api-e79c57ab-6e11-40b0-b4ae-f4be4e7e86e0.json @@ -0,0 +1,330 @@ +{ + "id": 206888201, + "node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=", + "name": "github-api", + "full_name": "github-api-test-org/github-api", + "private": false, + "owner": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api-test-org/github-api", + "description": "Tricky", + "fork": true, + "url": "https://api.github.com/repos/github-api-test-org/github-api", + "forks_url": "https://api.github.com/repos/github-api-test-org/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api-test-org/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api-test-org/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api-test-org/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api-test-org/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api-test-org/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api-test-org/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api-test-org/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api-test-org/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api-test-org/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api-test-org/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api-test-org/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api-test-org/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api-test-org/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api-test-org/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api-test-org/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api-test-org/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api-test-org/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api-test-org/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api-test-org/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api-test-org/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api-test-org/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api-test-org/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api-test-org/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api-test-org/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api-test-org/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api-test-org/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api-test-org/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api-test-org/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api-test-org/github-api/deployments", + "created_at": "2019-09-06T23:26:04Z", + "updated_at": "2019-09-30T22:36:47Z", + "pushed_at": "2019-10-05T21:11:41Z", + "git_url": "git://github.com/github-api-test-org/github-api.git", + "ssh_url": "git@github.com:github-api-test-org/github-api.git", + "clone_url": "https://github.com/github-api-test-org/github-api.git", + "svn_url": "https://github.com/github-api-test-org/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 11391, + "stargazers_count": 0, + "watchers_count": 0, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": false, + "forks_count": 0, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 0, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 0, + "open_issues": 0, + "watchers": 0, + "default_branch": "master", + "permissions": { + "admin": true, + "push": true, + "pull": true + }, + "allow_squash_merge": true, + "allow_merge_commit": true, + "allow_rebase_merge": true, + "organization": { + "login": "github-api-test-org", + "id": 7544739, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=", + "avatar_url": "https://avatars3.githubusercontent.com/u/7544739?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api-test-org", + "html_url": "https://github.com/github-api-test-org", + "followers_url": "https://api.github.com/users/github-api-test-org/followers", + "following_url": "https://api.github.com/users/github-api-test-org/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api-test-org/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api-test-org/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api-test-org/subscriptions", + "organizations_url": "https://api.github.com/users/github-api-test-org/orgs", + "repos_url": "https://api.github.com/users/github-api-test-org/repos", + "events_url": "https://api.github.com/users/github-api-test-org/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api-test-org/received_events", + "type": "Organization", + "site_admin": false + }, + "parent": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-09T01:44:14Z", + "pushed_at": "2019-10-08T20:04:57Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 13146, + "stargazers_count": 561, + "watchers_count": 561, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 430, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 81, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 430, + "open_issues": 81, + "watchers": 561, + "default_branch": "master" + }, + "source": { + "id": 617210, + "node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=", + "name": "github-api", + "full_name": "github-api/github-api", + "private": false, + "owner": { + "login": "github-api", + "id": 54909825, + "node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1", + "avatar_url": "https://avatars3.githubusercontent.com/u/54909825?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/github-api", + "html_url": "https://github.com/github-api", + "followers_url": "https://api.github.com/users/github-api/followers", + "following_url": "https://api.github.com/users/github-api/following{/other_user}", + "gists_url": "https://api.github.com/users/github-api/gists{/gist_id}", + "starred_url": "https://api.github.com/users/github-api/starred{/owner}{/repo}", + "subscriptions_url": "https://api.github.com/users/github-api/subscriptions", + "organizations_url": "https://api.github.com/users/github-api/orgs", + "repos_url": "https://api.github.com/users/github-api/repos", + "events_url": "https://api.github.com/users/github-api/events{/privacy}", + "received_events_url": "https://api.github.com/users/github-api/received_events", + "type": "Organization", + "site_admin": false + }, + "html_url": "https://github.com/github-api/github-api", + "description": "Java API for GitHub", + "fork": false, + "url": "https://api.github.com/repos/github-api/github-api", + "forks_url": "https://api.github.com/repos/github-api/github-api/forks", + "keys_url": "https://api.github.com/repos/github-api/github-api/keys{/key_id}", + "collaborators_url": "https://api.github.com/repos/github-api/github-api/collaborators{/collaborator}", + "teams_url": "https://api.github.com/repos/github-api/github-api/teams", + "hooks_url": "https://api.github.com/repos/github-api/github-api/hooks", + "issue_events_url": "https://api.github.com/repos/github-api/github-api/issues/events{/number}", + "events_url": "https://api.github.com/repos/github-api/github-api/events", + "assignees_url": "https://api.github.com/repos/github-api/github-api/assignees{/user}", + "branches_url": "https://api.github.com/repos/github-api/github-api/branches{/branch}", + "tags_url": "https://api.github.com/repos/github-api/github-api/tags", + "blobs_url": "https://api.github.com/repos/github-api/github-api/git/blobs{/sha}", + "git_tags_url": "https://api.github.com/repos/github-api/github-api/git/tags{/sha}", + "git_refs_url": "https://api.github.com/repos/github-api/github-api/git/refs{/sha}", + "trees_url": "https://api.github.com/repos/github-api/github-api/git/trees{/sha}", + "statuses_url": "https://api.github.com/repos/github-api/github-api/statuses/{sha}", + "languages_url": "https://api.github.com/repos/github-api/github-api/languages", + "stargazers_url": "https://api.github.com/repos/github-api/github-api/stargazers", + "contributors_url": "https://api.github.com/repos/github-api/github-api/contributors", + "subscribers_url": "https://api.github.com/repos/github-api/github-api/subscribers", + "subscription_url": "https://api.github.com/repos/github-api/github-api/subscription", + "commits_url": "https://api.github.com/repos/github-api/github-api/commits{/sha}", + "git_commits_url": "https://api.github.com/repos/github-api/github-api/git/commits{/sha}", + "comments_url": "https://api.github.com/repos/github-api/github-api/comments{/number}", + "issue_comment_url": "https://api.github.com/repos/github-api/github-api/issues/comments{/number}", + "contents_url": "https://api.github.com/repos/github-api/github-api/contents/{+path}", + "compare_url": "https://api.github.com/repos/github-api/github-api/compare/{base}...{head}", + "merges_url": "https://api.github.com/repos/github-api/github-api/merges", + "archive_url": "https://api.github.com/repos/github-api/github-api/{archive_format}{/ref}", + "downloads_url": "https://api.github.com/repos/github-api/github-api/downloads", + "issues_url": "https://api.github.com/repos/github-api/github-api/issues{/number}", + "pulls_url": "https://api.github.com/repos/github-api/github-api/pulls{/number}", + "milestones_url": "https://api.github.com/repos/github-api/github-api/milestones{/number}", + "notifications_url": "https://api.github.com/repos/github-api/github-api/notifications{?since,all,participating}", + "labels_url": "https://api.github.com/repos/github-api/github-api/labels{/name}", + "releases_url": "https://api.github.com/repos/github-api/github-api/releases{/id}", + "deployments_url": "https://api.github.com/repos/github-api/github-api/deployments", + "created_at": "2010-04-19T04:13:03Z", + "updated_at": "2019-10-09T01:44:14Z", + "pushed_at": "2019-10-08T20:04:57Z", + "git_url": "git://github.com/github-api/github-api.git", + "ssh_url": "git@github.com:github-api/github-api.git", + "clone_url": "https://github.com/github-api/github-api.git", + "svn_url": "https://github.com/github-api/github-api", + "homepage": "http://github-api.kohsuke.org/", + "size": 13146, + "stargazers_count": 561, + "watchers_count": 561, + "language": "Java", + "has_issues": true, + "has_projects": true, + "has_downloads": true, + "has_wiki": true, + "has_pages": true, + "forks_count": 430, + "mirror_url": null, + "archived": false, + "disabled": false, + "open_issues_count": 81, + "license": { + "key": "mit", + "name": "MIT License", + "spdx_id": "MIT", + "url": "https://api.github.com/licenses/mit", + "node_id": "MDc6TGljZW5zZTEz" + }, + "forks": 430, + "open_issues": 81, + "watchers": 561, + "default_branch": "master" + }, + "network_count": 430, + "subscribers_count": 0 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/__files/repos_github-api-test-org_github-api_issues_events_2615868520-89dbe512-7237-49e6-842e-8f9ae0902d7c.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/__files/repos_github-api-test-org_github-api_issues_events_2615868520-89dbe512-7237-49e6-842e-8f9ae0902d7c.json new file mode 100644 index 000000000..e2059283e --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/__files/repos_github-api-test-org_github-api_issues_events_2615868520-89dbe512-7237-49e6-842e-8f9ae0902d7c.json @@ -0,0 +1,79 @@ +{ + "id": 2615868520, + "node_id": "MDExOkNsb3NlZEV2ZW50MjYxNTg2ODUyMA==", + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/events/2615868520", + "actor": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "event": "closed", + "commit_id": null, + "commit_url": null, + "created_at": "2019-09-07T00:13:55Z", + "issue": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/issues/1", + "repository_url": "https://api.github.com/repos/github-api-test-org/github-api", + "labels_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/1/labels{/name}", + "comments_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/1/comments", + "events_url": "https://api.github.com/repos/github-api-test-org/github-api/issues/1/events", + "html_url": "https://github.com/github-api-test-org/github-api/pull/1", + "id": 490566421, + "node_id": "MDExOlB1bGxSZXF1ZXN0MzE1MTQ4NDQ1", + "number": 1, + "title": "testPullRequestReviews", + "user": { + "login": "bitwiseman", + "id": 1958953, + "node_id": "MDQ6VXNlcjE5NTg5NTM=", + "avatar_url": "https://avatars3.githubusercontent.com/u/1958953?v=4", + "gravatar_id": "", + "url": "https://api.github.com/users/bitwiseman", + "html_url": "https://github.com/bitwiseman", + "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 + }, + "labels": [], + "state": "closed", + "locked": false, + "assignee": null, + "assignees": [], + "milestone": null, + "comments": 0, + "created_at": "2019-09-07T00:13:51Z", + "updated_at": "2019-09-07T00:13:55Z", + "closed_at": "2019-09-07T00:13:55Z", + "author_association": "NONE", + "pull_request": { + "url": "https://api.github.com/repos/github-api-test-org/github-api/pulls/1", + "html_url": "https://github.com/github-api-test-org/github-api/pull/1", + "diff_url": "https://github.com/github-api-test-org/github-api/pull/1.diff", + "patch_url": "https://github.com/github-api-test-org/github-api/pull/1.patch" + }, + "body": "## test" + } +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/mappings/orgs_github-api-test-org-1-1be45f.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/mappings/orgs_github-api-test-org-1-1be45f.json new file mode 100644 index 000000000..07a202aaa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/mappings/orgs_github-api-test-org-1-1be45f.json @@ -0,0 +1,41 @@ +{ + "id": "1be45f74-f7e1-46ab-a143-7277403c12fe", + "name": "orgs_github-api-test-org", + "request": { + "url": "/orgs/github-api-test-org", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "orgs_github-api-test-org-1be45f74-f7e1-46ab-a143-7277403c12fe.json", + "headers": { + "Date": "Wed, 09 Oct 2019 01:56:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4900", + "X-RateLimit-Reset": "1570589791", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"4342e0e7004c1a50986c767513fe857d\"", + "Last-Modified": "Mon, 20 Apr 2015 00:42:30 GMT", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "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": "E760:382E:498956:56355C:5D9D3E5C" + } + }, + "uuid": "1be45f74-f7e1-46ab-a143-7277403c12fe", + "persistent": true, + "insertionIndex": 1 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/mappings/repos_github-api-test-org_github-api-2-e79c57.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/mappings/repos_github-api-test-org_github-api-2-e79c57.json new file mode 100644 index 000000000..8d8d439aa --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/mappings/repos_github-api-test-org_github-api-2-e79c57.json @@ -0,0 +1,41 @@ +{ + "id": "e79c57ab-6e11-40b0-b4ae-f4be4e7e86e0", + "name": "repos_github-api-test-org_github-api", + "request": { + "url": "/repos/github-api-test-org/github-api", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api-e79c57ab-6e11-40b0-b4ae-f4be4e7e86e0.json", + "headers": { + "Date": "Wed, 09 Oct 2019 01:56:45 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4899", + "X-RateLimit-Reset": "1570589791", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"21451633d882317175c1eaa6ef532c2e\"", + "Last-Modified": "Mon, 30 Sep 2019 22:36:47 GMT", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "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": "E760:382E:49895B:563566:5D9D3E5D" + } + }, + "uuid": "e79c57ab-6e11-40b0-b4ae-f4be4e7e86e0", + "persistent": true, + "insertionIndex": 2 +} \ No newline at end of file diff --git a/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/mappings/repos_github-api-test-org_github-api_issues_events_2615868520-3-89dbe5.json b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/mappings/repos_github-api-test-org_github-api_issues_events_2615868520-3-89dbe5.json new file mode 100644 index 000000000..82c3ab008 --- /dev/null +++ b/src/test/resources/org/kohsuke/github/GHIssueEventTest/wiremock/testRepositorySingleEvent/mappings/repos_github-api-test-org_github-api_issues_events_2615868520-3-89dbe5.json @@ -0,0 +1,41 @@ +{ + "id": "89dbe512-7237-49e6-842e-8f9ae0902d7c", + "name": "repos_github-api-test-org_github-api_issues_events_2615868520", + "request": { + "url": "/repos/github-api-test-org/github-api/issues/events/2615868520", + "method": "GET" + }, + "response": { + "status": 200, + "bodyFileName": "repos_github-api-test-org_github-api_issues_events_2615868520-89dbe512-7237-49e6-842e-8f9ae0902d7c.json", + "headers": { + "Date": "Wed, 09 Oct 2019 01:56:46 GMT", + "Content-Type": "application/json; charset=utf-8", + "Server": "GitHub.com", + "Status": "200 OK", + "X-RateLimit-Limit": "5000", + "X-RateLimit-Remaining": "4898", + "X-RateLimit-Reset": "1570589791", + "Cache-Control": "private, max-age=60, s-maxage=60", + "Vary": [ + "Accept, Authorization, Cookie, X-GitHub-OTP", + "Accept-Encoding" + ], + "ETag": "W/\"ed2d0ba4029d136ac417ba3b6e447c0d\"", + "Last-Modified": "Tue, 24 Sep 2019 19:32:29 GMT", + "X-GitHub-Media-Type": "unknown, github.v3", + "Access-Control-Expose-Headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type", + "Access-Control-Allow-Origin": "*", + "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": "E760:382E:498964:56356D:5D9D3E5D" + } + }, + "uuid": "89dbe512-7237-49e6-842e-8f9ae0902d7c", + "persistent": true, + "insertionIndex": 3 +} \ No newline at end of file