mirror of
https://github.com/jlengrand/github-api.git
synced 2026-03-11 08:21:23 +00:00
Compare commits
26 Commits
main
...
feature/cr
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f7f626a00c | ||
|
|
3eb2e13a6d | ||
|
|
44fefbbc30 | ||
|
|
12d4f7a807 | ||
|
|
1087acd7a2 | ||
|
|
c9faa4e733 | ||
|
|
56c89e4f0b | ||
|
|
0f4063763e | ||
|
|
88003331a5 | ||
|
|
a0156b0aa3 | ||
|
|
4d78d4cafb | ||
|
|
880da37056 | ||
|
|
68cabc7a96 | ||
|
|
7dbccd26b9 | ||
|
|
b3f1852230 | ||
|
|
e9685e0aae | ||
|
|
21ffe1693d | ||
|
|
0ad7b462e9 | ||
|
|
86963d7adb | ||
|
|
5b07a5e012 | ||
|
|
fb69457274 | ||
|
|
05e63f5bc7 | ||
|
|
fd6ff7e484 | ||
|
|
2c06ed07a8 | ||
|
|
8f3d965e70 | ||
|
|
7e8575894e |
2
pom.xml
2
pom.xml
@@ -97,7 +97,7 @@
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-gpg-plugin</artifactId>
|
||||
<version>1.6</version>
|
||||
<version>3.0.1</version>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.jacoco</groupId>
|
||||
|
||||
@@ -21,6 +21,7 @@ public class GHIssueEvent extends GitHubInteractiveObject {
|
||||
private GHMilestone milestone;
|
||||
private GHLabel label;
|
||||
private GHUser assignee;
|
||||
private GHIssueRename rename;
|
||||
|
||||
private GHIssue issue;
|
||||
|
||||
@@ -144,6 +145,16 @@ public class GHIssueEvent extends GitHubInteractiveObject {
|
||||
return assignee;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the {@link GHIssueRename} that contains information about issue old and new name. Only present for event
|
||||
* "renamed", <code>null</code> otherwise.
|
||||
*
|
||||
* @return the GHIssueRename
|
||||
*/
|
||||
public GHIssueRename getRename() {
|
||||
return this.rename;
|
||||
}
|
||||
|
||||
GHIssueEvent wrapUp(GitHub root) {
|
||||
this.root = root;
|
||||
return this;
|
||||
|
||||
32
src/main/java/org/kohsuke/github/GHIssueRename.java
Normal file
32
src/main/java/org/kohsuke/github/GHIssueRename.java
Normal file
@@ -0,0 +1,32 @@
|
||||
package org.kohsuke.github;
|
||||
|
||||
/**
|
||||
* The type GHIssueRename.
|
||||
*
|
||||
* @see <a href="https://docs.github.com/en/developers/webhooks-and-events/events/issue-event-types#renamed">Github
|
||||
* documentation for renamed event</a>
|
||||
*
|
||||
* @author Andrii Tomchuk
|
||||
*/
|
||||
public class GHIssueRename {
|
||||
private String from = "";
|
||||
private String to = "";
|
||||
|
||||
/**
|
||||
* Old issue name.
|
||||
*
|
||||
* @return old issue name
|
||||
*/
|
||||
public String getFrom() {
|
||||
return this.from;
|
||||
}
|
||||
|
||||
/**
|
||||
* New issue name.
|
||||
*
|
||||
* @return new issue name
|
||||
*/
|
||||
public String getTo() {
|
||||
return this.to;
|
||||
}
|
||||
}
|
||||
@@ -34,6 +34,16 @@ public class GHRelease extends GHObject {
|
||||
private Date published_at;
|
||||
private String tarball_url;
|
||||
private String zipball_url;
|
||||
private String discussion_url;
|
||||
|
||||
/**
|
||||
* Gets discussion url. Only present if a discussion relating to the release exists
|
||||
*
|
||||
* @return the discussion url
|
||||
*/
|
||||
public String getDiscussionUrl() {
|
||||
return discussion_url;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets assets url.
|
||||
|
||||
@@ -87,6 +87,18 @@ public class GHReleaseBuilder {
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Optional
|
||||
*
|
||||
* @param categoryName
|
||||
* the category of the discussion to be created for the release. Category should already exist
|
||||
* @return the gh release builder
|
||||
*/
|
||||
public GHReleaseBuilder categoryName(String categoryName) {
|
||||
builder.with("discussion_category_name", categoryName);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create gh release.
|
||||
*
|
||||
|
||||
@@ -91,6 +91,18 @@ public class GHReleaseUpdater {
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Optional
|
||||
*
|
||||
* @param categoryName
|
||||
* the category of the discussion to be created for the release. Category should already exist
|
||||
* @return the gh release builder
|
||||
*/
|
||||
public GHReleaseUpdater categoryName(String categoryName) {
|
||||
builder.with("discussion_category_name", categoryName);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Update gh release.
|
||||
*
|
||||
|
||||
@@ -28,6 +28,8 @@ import com.infradna.tool.bridge_method_injector.WithBridgeMethods;
|
||||
import java.io.IOException;
|
||||
import java.util.*;
|
||||
|
||||
import static org.kohsuke.github.internal.Previews.INERTIA;
|
||||
|
||||
/**
|
||||
* Represents an user of GitHub.
|
||||
*
|
||||
@@ -134,6 +136,22 @@ public class GHUser extends GHPerson {
|
||||
return listRepositories("starred");
|
||||
}
|
||||
|
||||
/**
|
||||
* Lists all the projects.
|
||||
* <p>
|
||||
* https://docs.github.com/en/rest/reference/projects#list-user-projects
|
||||
*
|
||||
* @return the paged iterable
|
||||
*/
|
||||
@Deprecated
|
||||
@Preview(INERTIA)
|
||||
public PagedIterable<GHProject> listProjects() {
|
||||
return root.createRequest()
|
||||
.withPreview(INERTIA)
|
||||
.withUrlPath(getApiTailUrl("projects"))
|
||||
.toIterable(GHProject[].class, item -> item.wrap(root));
|
||||
}
|
||||
|
||||
private PagedIterable<GHRepository> listRepositories(final String suffix) {
|
||||
return root.createRequest()
|
||||
.withUrlPath(getApiTailUrl(suffix))
|
||||
|
||||
@@ -777,43 +777,6 @@ public class AppTest extends AbstractGitHubWireMockTest {
|
||||
assertThat(j.hasPublicMember(b), is(false));
|
||||
}
|
||||
|
||||
@Ignore("Needs mocking check")
|
||||
@Test
|
||||
public void testCreateRelease() throws Exception {
|
||||
kohsuke();
|
||||
|
||||
GHRepository r = gitHub.getRepository("kohsuke2/testCreateRelease");
|
||||
|
||||
String tagName = UUID.randomUUID().toString();
|
||||
String releaseName = "release-" + tagName;
|
||||
|
||||
GHRelease rel = r.createRelease(tagName).name(releaseName).prerelease(false).create();
|
||||
|
||||
Thread.sleep(3000);
|
||||
|
||||
try {
|
||||
|
||||
for (GHTag tag : r.listTags()) {
|
||||
if (tagName.equals(tag.getName())) {
|
||||
String ash = tag.getCommit().getSHA1();
|
||||
GHRef ref = r.createRef("refs/heads/" + releaseName, ash);
|
||||
assertThat(("refs/heads/" + releaseName), equalTo(ref.getRef()));
|
||||
|
||||
for (Map.Entry<String, GHBranch> entry : r.getBranches().entrySet()) {
|
||||
// System.out.println(entry.getKey() + "/" + entry.getValue());
|
||||
if (releaseName.equals(entry.getValue().getName())) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
fail("branch not found");
|
||||
}
|
||||
}
|
||||
fail("release creation failed! tag not found");
|
||||
} finally {
|
||||
rel.delete();
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testRef() throws IOException {
|
||||
GHRef mainRef = gitHub.getRepository("jenkinsci/jenkins").getRef("heads/main");
|
||||
|
||||
@@ -141,7 +141,7 @@ public class ArchTests {
|
||||
final String reason = "This project uses `assertThat(...)` instead of other `assert*()` methods.";
|
||||
|
||||
final DescribedPredicate<HasName> assertMethodOtherThanAssertThat = nameContaining("assert")
|
||||
.and(DescribedPredicate.not(name("assertThat")));
|
||||
.and(DescribedPredicate.not(name("assertThat")).and(DescribedPredicate.not(name("assertThrows"))));
|
||||
|
||||
final ArchRule onlyAssertThatRule = classes()
|
||||
.should(not(callMethodWhere(target(assertMethodOtherThanAssertThat))))
|
||||
|
||||
@@ -39,6 +39,40 @@ public class GHIssueEventTest extends AbstractGitHubWireMockTest {
|
||||
issue.close();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testEventsForIssueRename() throws Exception {
|
||||
// Create the issue.
|
||||
GHRepository repo = getRepository();
|
||||
GHIssueBuilder builder = repo.createIssue("Some invalid issue name");
|
||||
GHIssue issue = builder.create();
|
||||
|
||||
// Generate rename event.
|
||||
issue.setTitle("Fixed issue name");
|
||||
|
||||
// Test that the event is present.
|
||||
List<GHIssueEvent> list = issue.listEvents().toList();
|
||||
assertThat(list.size(), equalTo(1));
|
||||
|
||||
GHIssueEvent event = list.get(0);
|
||||
assertThat(event.getIssue().getNumber(), equalTo(issue.getNumber()));
|
||||
assertThat(event.getEvent(), equalTo("renamed"));
|
||||
assertThat(event.getRename(), notNullValue());
|
||||
assertThat(event.getRename().getFrom(), equalTo("Some invalid issue name"));
|
||||
assertThat(event.getRename().getTo(), equalTo("Fixed issue name"));
|
||||
|
||||
// Test that we can get a single event directly.
|
||||
GHIssueEvent eventFromRepo = repo.getIssueEvent(event.getId());
|
||||
assertThat(eventFromRepo.getId(), equalTo(event.getId()));
|
||||
assertThat(eventFromRepo.getCreatedAt(), equalTo(event.getCreatedAt()));
|
||||
assertThat(eventFromRepo.getEvent(), equalTo("renamed"));
|
||||
assertThat(eventFromRepo.getRename(), notNullValue());
|
||||
assertThat(eventFromRepo.getRename().getFrom(), equalTo("Some invalid issue name"));
|
||||
assertThat(eventFromRepo.getRename().getTo(), equalTo("Fixed issue name"));
|
||||
|
||||
// Close the issue.
|
||||
issue.close();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testRepositoryEvents() throws Exception {
|
||||
GHRepository repo = getRepository();
|
||||
|
||||
125
src/test/java/org/kohsuke/github/GHReleaseTest.java
Normal file
125
src/test/java/org/kohsuke/github/GHReleaseTest.java
Normal file
@@ -0,0 +1,125 @@
|
||||
package org.kohsuke.github;
|
||||
|
||||
import org.junit.Test;
|
||||
|
||||
import static org.hamcrest.Matchers.*;
|
||||
import static org.junit.Assert.assertThrows;
|
||||
|
||||
public class GHReleaseTest extends AbstractGitHubWireMockTest {
|
||||
|
||||
@Test
|
||||
public void testCreateSimpleRelease() throws Exception {
|
||||
GHRepository repo = gitHub.getRepository("hub4j-test-org/testCreateRelease");
|
||||
|
||||
String tagName = mockGitHub.getMethodName();
|
||||
GHRelease release = repo.createRelease(tagName).categoryName("announcements").prerelease(false).create();
|
||||
try {
|
||||
GHRelease releaseCheck = repo.getRelease(release.getId());
|
||||
|
||||
assertThat(releaseCheck, notNullValue());
|
||||
assertThat(releaseCheck.getTagName(), is(tagName));
|
||||
assertThat(releaseCheck.isPrerelease(), is(false));
|
||||
assertThat(releaseCheck.getDiscussionUrl(), notNullValue());
|
||||
} finally {
|
||||
release.delete();
|
||||
assertThat(repo.getRelease(release.getId()), nullValue());
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCreateSimpleReleaseWithoutDiscussion() throws Exception {
|
||||
GHRepository repo = gitHub.getRepository("hub4j-test-org/testCreateRelease");
|
||||
|
||||
String tagName = mockGitHub.getMethodName();
|
||||
GHRelease release = repo.createRelease(tagName).create();
|
||||
|
||||
try {
|
||||
GHRelease releaseCheck = repo.getRelease(release.getId());
|
||||
|
||||
assertThat(releaseCheck, notNullValue());
|
||||
assertThat(releaseCheck.getTagName(), is(tagName));
|
||||
assertThat(releaseCheck.getDiscussionUrl(), nullValue());
|
||||
} finally {
|
||||
release.delete();
|
||||
assertThat(repo.getRelease(release.getId()), nullValue());
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCreateDoubleReleaseFails() throws Exception {
|
||||
GHRepository repo = gitHub.getRepository("hub4j-test-org/testCreateRelease");
|
||||
|
||||
String tagName = mockGitHub.getMethodName();
|
||||
|
||||
GHRelease release = repo.createRelease(tagName).create();
|
||||
|
||||
try {
|
||||
GHRelease releaseCheck = repo.getRelease(release.getId());
|
||||
assertThat(releaseCheck, notNullValue());
|
||||
|
||||
HttpException httpException = assertThrows(HttpException.class, () -> {
|
||||
repo.createRelease(tagName).create();
|
||||
});
|
||||
|
||||
assertThat(httpException.getResponseCode(), is(422));
|
||||
} finally {
|
||||
release.delete();
|
||||
assertThat(repo.getRelease(release.getId()), nullValue());
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testCreateReleaseWithUnknownCategoryFails() throws Exception {
|
||||
GHRepository repo = gitHub.getRepository("hub4j-test-org/testCreateRelease");
|
||||
|
||||
String tagName = mockGitHub.getMethodName();
|
||||
String releaseName = "release-" + tagName;
|
||||
|
||||
assertThrows(GHFileNotFoundException.class, () -> {
|
||||
repo.createRelease(tagName)
|
||||
.name(releaseName)
|
||||
.categoryName("an invalid cateogry")
|
||||
.prerelease(false)
|
||||
.create();
|
||||
});
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testUpdateRelease() throws Exception {
|
||||
GHRepository repo = gitHub.getRepository("hub4j-test-org/testCreateRelease");
|
||||
|
||||
String tagName = mockGitHub.getMethodName();
|
||||
GHRelease release = repo.createRelease(tagName).prerelease(true).create();
|
||||
try {
|
||||
GHRelease releaseCheck = repo.getRelease(release.getId());
|
||||
GHRelease updateCheck = releaseCheck.update().categoryName("announcements").prerelease(false).update();
|
||||
|
||||
assertThat(releaseCheck, notNullValue());
|
||||
assertThat(releaseCheck.getTagName(), is(tagName));
|
||||
assertThat(releaseCheck.isPrerelease(), is(true));
|
||||
assertThat(releaseCheck.getDiscussionUrl(), nullValue());
|
||||
|
||||
assertThat(updateCheck, notNullValue());
|
||||
assertThat(updateCheck.getTagName(), is(tagName));
|
||||
assertThat(updateCheck.isPrerelease(), is(false));
|
||||
assertThat(updateCheck.getDiscussionUrl(), notNullValue());
|
||||
|
||||
} finally {
|
||||
release.delete();
|
||||
assertThat(repo.getRelease(release.getId()), nullValue());
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testDeleteRelease() throws Exception {
|
||||
GHRepository repo = gitHub.getRepository("hub4j-test-org/testCreateRelease");
|
||||
|
||||
String tagName = mockGitHub.getMethodName();
|
||||
GHRelease release = repo.createRelease(tagName).categoryName("announcements").prerelease(true).create();
|
||||
|
||||
assertThat(repo.getRelease(release.getId()), notNullValue());
|
||||
release.delete();
|
||||
assertThat(repo.getRelease(release.getId()), nullValue());
|
||||
|
||||
}
|
||||
}
|
||||
@@ -81,6 +81,17 @@ public class GHUserTest extends AbstractGitHubWireMockTest {
|
||||
assertThat(i, equalTo(115));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void listProjects() throws IOException {
|
||||
GHUser user = gitHub.getUser("t0m4uk1991");
|
||||
List<GHProject> projects = user.listProjects().toList();
|
||||
assertThat(projects, notNullValue());
|
||||
assertThat(projects.size(), is(3));
|
||||
assertThat(projects.get(0).getName(), is("Project 1"));
|
||||
assertThat(projects.get(1).getName(), is("Project 2"));
|
||||
assertThat(projects.get(2).getName(), is("Project 3"));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void listPublicRepositoriesPageSize62() throws IOException {
|
||||
GHUser user = gitHub.getUser("kohsuke");
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"login": "hub4j-test-org",
|
||||
"id": 7544739,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=",
|
||||
"url": "https://api.github.com/orgs/hub4j-test-org",
|
||||
"repos_url": "https://api.github.com/orgs/hub4j-test-org/repos",
|
||||
"events_url": "https://api.github.com/orgs/hub4j-test-org/events",
|
||||
"hooks_url": "https://api.github.com/orgs/hub4j-test-org/hooks",
|
||||
"issues_url": "https://api.github.com/orgs/hub4j-test-org/issues",
|
||||
"members_url": "https://api.github.com/orgs/hub4j-test-org/members{/member}",
|
||||
"public_members_url": "https://api.github.com/orgs/hub4j-test-org/public_members{/member}",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4",
|
||||
"description": "Hub4j Test Org Description (this could be null or blank too)",
|
||||
"name": "Hub4j Test Org Name (this could be null or blank too)",
|
||||
"company": null,
|
||||
"blog": "https://hub4j.url.io/could/be/null",
|
||||
"location": "Hub4j Test Org Location (this could be null or blank too)",
|
||||
"email": "hub4jtestorgemail@could.be.null.com",
|
||||
"twitter_username": null,
|
||||
"is_verified": false,
|
||||
"has_organization_projects": true,
|
||||
"has_repository_projects": true,
|
||||
"public_repos": 18,
|
||||
"public_gists": 0,
|
||||
"followers": 0,
|
||||
"following": 0,
|
||||
"html_url": "https://github.com/hub4j-test-org",
|
||||
"created_at": "2014-05-10T19:39:11Z",
|
||||
"updated_at": "2020-06-04T05:56:10Z",
|
||||
"type": "Organization"
|
||||
}
|
||||
@@ -0,0 +1,328 @@
|
||||
{
|
||||
"id": 206888201,
|
||||
"node_id": "MDEwOlJlcG9zaXRvcnkyMDY4ODgyMDE=",
|
||||
"name": "github-api",
|
||||
"full_name": "hub4j-test-org/github-api",
|
||||
"private": false,
|
||||
"owner": {
|
||||
"login": "hub4j-test-org",
|
||||
"id": 7544739,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/hub4j-test-org",
|
||||
"html_url": "https://github.com/hub4j-test-org",
|
||||
"followers_url": "https://api.github.com/users/hub4j-test-org/followers",
|
||||
"following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/hub4j-test-org/orgs",
|
||||
"repos_url": "https://api.github.com/users/hub4j-test-org/repos",
|
||||
"events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/hub4j-test-org/received_events",
|
||||
"type": "Organization",
|
||||
"site_admin": false
|
||||
},
|
||||
"html_url": "https://github.com/hub4j-test-org/github-api",
|
||||
"description": "Tricky",
|
||||
"fork": true,
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/github-api",
|
||||
"forks_url": "https://api.github.com/repos/hub4j-test-org/github-api/forks",
|
||||
"keys_url": "https://api.github.com/repos/hub4j-test-org/github-api/keys{/key_id}",
|
||||
"collaborators_url": "https://api.github.com/repos/hub4j-test-org/github-api/collaborators{/collaborator}",
|
||||
"teams_url": "https://api.github.com/repos/hub4j-test-org/github-api/teams",
|
||||
"hooks_url": "https://api.github.com/repos/hub4j-test-org/github-api/hooks",
|
||||
"issue_events_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/events{/number}",
|
||||
"events_url": "https://api.github.com/repos/hub4j-test-org/github-api/events",
|
||||
"assignees_url": "https://api.github.com/repos/hub4j-test-org/github-api/assignees{/user}",
|
||||
"branches_url": "https://api.github.com/repos/hub4j-test-org/github-api/branches{/branch}",
|
||||
"tags_url": "https://api.github.com/repos/hub4j-test-org/github-api/tags",
|
||||
"blobs_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/blobs{/sha}",
|
||||
"git_tags_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/tags{/sha}",
|
||||
"git_refs_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/refs{/sha}",
|
||||
"trees_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/trees{/sha}",
|
||||
"statuses_url": "https://api.github.com/repos/hub4j-test-org/github-api/statuses/{sha}",
|
||||
"languages_url": "https://api.github.com/repos/hub4j-test-org/github-api/languages",
|
||||
"stargazers_url": "https://api.github.com/repos/hub4j-test-org/github-api/stargazers",
|
||||
"contributors_url": "https://api.github.com/repos/hub4j-test-org/github-api/contributors",
|
||||
"subscribers_url": "https://api.github.com/repos/hub4j-test-org/github-api/subscribers",
|
||||
"subscription_url": "https://api.github.com/repos/hub4j-test-org/github-api/subscription",
|
||||
"commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/commits{/sha}",
|
||||
"git_commits_url": "https://api.github.com/repos/hub4j-test-org/github-api/git/commits{/sha}",
|
||||
"comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/comments{/number}",
|
||||
"issue_comment_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/comments{/number}",
|
||||
"contents_url": "https://api.github.com/repos/hub4j-test-org/github-api/contents/{+path}",
|
||||
"compare_url": "https://api.github.com/repos/hub4j-test-org/github-api/compare/{base}...{head}",
|
||||
"merges_url": "https://api.github.com/repos/hub4j-test-org/github-api/merges",
|
||||
"archive_url": "https://api.github.com/repos/hub4j-test-org/github-api/{archive_format}{/ref}",
|
||||
"downloads_url": "https://api.github.com/repos/hub4j-test-org/github-api/downloads",
|
||||
"issues_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues{/number}",
|
||||
"pulls_url": "https://api.github.com/repos/hub4j-test-org/github-api/pulls{/number}",
|
||||
"milestones_url": "https://api.github.com/repos/hub4j-test-org/github-api/milestones{/number}",
|
||||
"notifications_url": "https://api.github.com/repos/hub4j-test-org/github-api/notifications{?since,all,participating}",
|
||||
"labels_url": "https://api.github.com/repos/hub4j-test-org/github-api/labels{/name}",
|
||||
"releases_url": "https://api.github.com/repos/hub4j-test-org/github-api/releases{/id}",
|
||||
"deployments_url": "https://api.github.com/repos/hub4j-test-org/github-api/deployments",
|
||||
"created_at": "2019-09-06T23:26:04Z",
|
||||
"updated_at": "2021-04-19T20:09:00Z",
|
||||
"pushed_at": "2021-04-19T20:08:56Z",
|
||||
"git_url": "git://github.com/hub4j-test-org/github-api.git",
|
||||
"ssh_url": "git@github.com:hub4j-test-org/github-api.git",
|
||||
"clone_url": "https://github.com/hub4j-test-org/github-api.git",
|
||||
"svn_url": "https://github.com/hub4j-test-org/github-api",
|
||||
"homepage": "http://github-api.kohsuke.org/",
|
||||
"size": 19045,
|
||||
"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": 5,
|
||||
"license": {
|
||||
"key": "mit",
|
||||
"name": "MIT License",
|
||||
"spdx_id": "MIT",
|
||||
"url": "https://api.github.com/licenses/mit",
|
||||
"node_id": "MDc6TGljZW5zZTEz"
|
||||
},
|
||||
"forks": 0,
|
||||
"open_issues": 5,
|
||||
"watchers": 0,
|
||||
"default_branch": "main",
|
||||
"permissions": {
|
||||
"admin": false,
|
||||
"push": false,
|
||||
"pull": true
|
||||
},
|
||||
"temp_clone_token": "",
|
||||
"organization": {
|
||||
"login": "hub4j-test-org",
|
||||
"id": 7544739,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/hub4j-test-org",
|
||||
"html_url": "https://github.com/hub4j-test-org",
|
||||
"followers_url": "https://api.github.com/users/hub4j-test-org/followers",
|
||||
"following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/hub4j-test-org/orgs",
|
||||
"repos_url": "https://api.github.com/users/hub4j-test-org/repos",
|
||||
"events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/hub4j-test-org/received_events",
|
||||
"type": "Organization",
|
||||
"site_admin": false
|
||||
},
|
||||
"parent": {
|
||||
"id": 617210,
|
||||
"node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=",
|
||||
"name": "github-api",
|
||||
"full_name": "hub4j/github-api",
|
||||
"private": false,
|
||||
"owner": {
|
||||
"login": "hub4j",
|
||||
"id": 54909825,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/54909825?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/hub4j",
|
||||
"html_url": "https://github.com/hub4j",
|
||||
"followers_url": "https://api.github.com/users/hub4j/followers",
|
||||
"following_url": "https://api.github.com/users/hub4j/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/hub4j/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/hub4j/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/hub4j/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/hub4j/orgs",
|
||||
"repos_url": "https://api.github.com/users/hub4j/repos",
|
||||
"events_url": "https://api.github.com/users/hub4j/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/hub4j/received_events",
|
||||
"type": "Organization",
|
||||
"site_admin": false
|
||||
},
|
||||
"html_url": "https://github.com/hub4j/github-api",
|
||||
"description": "Java API for GitHub",
|
||||
"fork": false,
|
||||
"url": "https://api.github.com/repos/hub4j/github-api",
|
||||
"forks_url": "https://api.github.com/repos/hub4j/github-api/forks",
|
||||
"keys_url": "https://api.github.com/repos/hub4j/github-api/keys{/key_id}",
|
||||
"collaborators_url": "https://api.github.com/repos/hub4j/github-api/collaborators{/collaborator}",
|
||||
"teams_url": "https://api.github.com/repos/hub4j/github-api/teams",
|
||||
"hooks_url": "https://api.github.com/repos/hub4j/github-api/hooks",
|
||||
"issue_events_url": "https://api.github.com/repos/hub4j/github-api/issues/events{/number}",
|
||||
"events_url": "https://api.github.com/repos/hub4j/github-api/events",
|
||||
"assignees_url": "https://api.github.com/repos/hub4j/github-api/assignees{/user}",
|
||||
"branches_url": "https://api.github.com/repos/hub4j/github-api/branches{/branch}",
|
||||
"tags_url": "https://api.github.com/repos/hub4j/github-api/tags",
|
||||
"blobs_url": "https://api.github.com/repos/hub4j/github-api/git/blobs{/sha}",
|
||||
"git_tags_url": "https://api.github.com/repos/hub4j/github-api/git/tags{/sha}",
|
||||
"git_refs_url": "https://api.github.com/repos/hub4j/github-api/git/refs{/sha}",
|
||||
"trees_url": "https://api.github.com/repos/hub4j/github-api/git/trees{/sha}",
|
||||
"statuses_url": "https://api.github.com/repos/hub4j/github-api/statuses/{sha}",
|
||||
"languages_url": "https://api.github.com/repos/hub4j/github-api/languages",
|
||||
"stargazers_url": "https://api.github.com/repos/hub4j/github-api/stargazers",
|
||||
"contributors_url": "https://api.github.com/repos/hub4j/github-api/contributors",
|
||||
"subscribers_url": "https://api.github.com/repos/hub4j/github-api/subscribers",
|
||||
"subscription_url": "https://api.github.com/repos/hub4j/github-api/subscription",
|
||||
"commits_url": "https://api.github.com/repos/hub4j/github-api/commits{/sha}",
|
||||
"git_commits_url": "https://api.github.com/repos/hub4j/github-api/git/commits{/sha}",
|
||||
"comments_url": "https://api.github.com/repos/hub4j/github-api/comments{/number}",
|
||||
"issue_comment_url": "https://api.github.com/repos/hub4j/github-api/issues/comments{/number}",
|
||||
"contents_url": "https://api.github.com/repos/hub4j/github-api/contents/{+path}",
|
||||
"compare_url": "https://api.github.com/repos/hub4j/github-api/compare/{base}...{head}",
|
||||
"merges_url": "https://api.github.com/repos/hub4j/github-api/merges",
|
||||
"archive_url": "https://api.github.com/repos/hub4j/github-api/{archive_format}{/ref}",
|
||||
"downloads_url": "https://api.github.com/repos/hub4j/github-api/downloads",
|
||||
"issues_url": "https://api.github.com/repos/hub4j/github-api/issues{/number}",
|
||||
"pulls_url": "https://api.github.com/repos/hub4j/github-api/pulls{/number}",
|
||||
"milestones_url": "https://api.github.com/repos/hub4j/github-api/milestones{/number}",
|
||||
"notifications_url": "https://api.github.com/repos/hub4j/github-api/notifications{?since,all,participating}",
|
||||
"labels_url": "https://api.github.com/repos/hub4j/github-api/labels{/name}",
|
||||
"releases_url": "https://api.github.com/repos/hub4j/github-api/releases{/id}",
|
||||
"deployments_url": "https://api.github.com/repos/hub4j/github-api/deployments",
|
||||
"created_at": "2010-04-19T04:13:03Z",
|
||||
"updated_at": "2021-06-04T07:26:35Z",
|
||||
"pushed_at": "2021-06-02T21:59:14Z",
|
||||
"git_url": "git://github.com/hub4j/github-api.git",
|
||||
"ssh_url": "git@github.com:hub4j/github-api.git",
|
||||
"clone_url": "https://github.com/hub4j/github-api.git",
|
||||
"svn_url": "https://github.com/hub4j/github-api",
|
||||
"homepage": "https://github-api.kohsuke.org/",
|
||||
"size": 33490,
|
||||
"stargazers_count": 774,
|
||||
"watchers_count": 774,
|
||||
"language": "Java",
|
||||
"has_issues": true,
|
||||
"has_projects": true,
|
||||
"has_downloads": true,
|
||||
"has_wiki": true,
|
||||
"has_pages": true,
|
||||
"forks_count": 546,
|
||||
"mirror_url": null,
|
||||
"archived": false,
|
||||
"disabled": false,
|
||||
"open_issues_count": 86,
|
||||
"license": {
|
||||
"key": "mit",
|
||||
"name": "MIT License",
|
||||
"spdx_id": "MIT",
|
||||
"url": "https://api.github.com/licenses/mit",
|
||||
"node_id": "MDc6TGljZW5zZTEz"
|
||||
},
|
||||
"forks": 546,
|
||||
"open_issues": 86,
|
||||
"watchers": 774,
|
||||
"default_branch": "main"
|
||||
},
|
||||
"source": {
|
||||
"id": 617210,
|
||||
"node_id": "MDEwOlJlcG9zaXRvcnk2MTcyMTA=",
|
||||
"name": "github-api",
|
||||
"full_name": "hub4j/github-api",
|
||||
"private": false,
|
||||
"owner": {
|
||||
"login": "hub4j",
|
||||
"id": 54909825,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjU0OTA5ODI1",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/54909825?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/hub4j",
|
||||
"html_url": "https://github.com/hub4j",
|
||||
"followers_url": "https://api.github.com/users/hub4j/followers",
|
||||
"following_url": "https://api.github.com/users/hub4j/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/hub4j/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/hub4j/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/hub4j/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/hub4j/orgs",
|
||||
"repos_url": "https://api.github.com/users/hub4j/repos",
|
||||
"events_url": "https://api.github.com/users/hub4j/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/hub4j/received_events",
|
||||
"type": "Organization",
|
||||
"site_admin": false
|
||||
},
|
||||
"html_url": "https://github.com/hub4j/github-api",
|
||||
"description": "Java API for GitHub",
|
||||
"fork": false,
|
||||
"url": "https://api.github.com/repos/hub4j/github-api",
|
||||
"forks_url": "https://api.github.com/repos/hub4j/github-api/forks",
|
||||
"keys_url": "https://api.github.com/repos/hub4j/github-api/keys{/key_id}",
|
||||
"collaborators_url": "https://api.github.com/repos/hub4j/github-api/collaborators{/collaborator}",
|
||||
"teams_url": "https://api.github.com/repos/hub4j/github-api/teams",
|
||||
"hooks_url": "https://api.github.com/repos/hub4j/github-api/hooks",
|
||||
"issue_events_url": "https://api.github.com/repos/hub4j/github-api/issues/events{/number}",
|
||||
"events_url": "https://api.github.com/repos/hub4j/github-api/events",
|
||||
"assignees_url": "https://api.github.com/repos/hub4j/github-api/assignees{/user}",
|
||||
"branches_url": "https://api.github.com/repos/hub4j/github-api/branches{/branch}",
|
||||
"tags_url": "https://api.github.com/repos/hub4j/github-api/tags",
|
||||
"blobs_url": "https://api.github.com/repos/hub4j/github-api/git/blobs{/sha}",
|
||||
"git_tags_url": "https://api.github.com/repos/hub4j/github-api/git/tags{/sha}",
|
||||
"git_refs_url": "https://api.github.com/repos/hub4j/github-api/git/refs{/sha}",
|
||||
"trees_url": "https://api.github.com/repos/hub4j/github-api/git/trees{/sha}",
|
||||
"statuses_url": "https://api.github.com/repos/hub4j/github-api/statuses/{sha}",
|
||||
"languages_url": "https://api.github.com/repos/hub4j/github-api/languages",
|
||||
"stargazers_url": "https://api.github.com/repos/hub4j/github-api/stargazers",
|
||||
"contributors_url": "https://api.github.com/repos/hub4j/github-api/contributors",
|
||||
"subscribers_url": "https://api.github.com/repos/hub4j/github-api/subscribers",
|
||||
"subscription_url": "https://api.github.com/repos/hub4j/github-api/subscription",
|
||||
"commits_url": "https://api.github.com/repos/hub4j/github-api/commits{/sha}",
|
||||
"git_commits_url": "https://api.github.com/repos/hub4j/github-api/git/commits{/sha}",
|
||||
"comments_url": "https://api.github.com/repos/hub4j/github-api/comments{/number}",
|
||||
"issue_comment_url": "https://api.github.com/repos/hub4j/github-api/issues/comments{/number}",
|
||||
"contents_url": "https://api.github.com/repos/hub4j/github-api/contents/{+path}",
|
||||
"compare_url": "https://api.github.com/repos/hub4j/github-api/compare/{base}...{head}",
|
||||
"merges_url": "https://api.github.com/repos/hub4j/github-api/merges",
|
||||
"archive_url": "https://api.github.com/repos/hub4j/github-api/{archive_format}{/ref}",
|
||||
"downloads_url": "https://api.github.com/repos/hub4j/github-api/downloads",
|
||||
"issues_url": "https://api.github.com/repos/hub4j/github-api/issues{/number}",
|
||||
"pulls_url": "https://api.github.com/repos/hub4j/github-api/pulls{/number}",
|
||||
"milestones_url": "https://api.github.com/repos/hub4j/github-api/milestones{/number}",
|
||||
"notifications_url": "https://api.github.com/repos/hub4j/github-api/notifications{?since,all,participating}",
|
||||
"labels_url": "https://api.github.com/repos/hub4j/github-api/labels{/name}",
|
||||
"releases_url": "https://api.github.com/repos/hub4j/github-api/releases{/id}",
|
||||
"deployments_url": "https://api.github.com/repos/hub4j/github-api/deployments",
|
||||
"created_at": "2010-04-19T04:13:03Z",
|
||||
"updated_at": "2021-06-04T07:26:35Z",
|
||||
"pushed_at": "2021-06-02T21:59:14Z",
|
||||
"git_url": "git://github.com/hub4j/github-api.git",
|
||||
"ssh_url": "git@github.com:hub4j/github-api.git",
|
||||
"clone_url": "https://github.com/hub4j/github-api.git",
|
||||
"svn_url": "https://github.com/hub4j/github-api",
|
||||
"homepage": "https://github-api.kohsuke.org/",
|
||||
"size": 33490,
|
||||
"stargazers_count": 774,
|
||||
"watchers_count": 774,
|
||||
"language": "Java",
|
||||
"has_issues": true,
|
||||
"has_projects": true,
|
||||
"has_downloads": true,
|
||||
"has_wiki": true,
|
||||
"has_pages": true,
|
||||
"forks_count": 546,
|
||||
"mirror_url": null,
|
||||
"archived": false,
|
||||
"disabled": false,
|
||||
"open_issues_count": 86,
|
||||
"license": {
|
||||
"key": "mit",
|
||||
"name": "MIT License",
|
||||
"spdx_id": "MIT",
|
||||
"url": "https://api.github.com/licenses/mit",
|
||||
"node_id": "MDc6TGljZW5zZTEz"
|
||||
},
|
||||
"forks": 546,
|
||||
"open_issues": 86,
|
||||
"watchers": 774,
|
||||
"default_branch": "main"
|
||||
},
|
||||
"network_count": 546,
|
||||
"subscribers_count": 1
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/428",
|
||||
"repository_url": "https://api.github.com/repos/hub4j-test-org/github-api",
|
||||
"labels_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/428/labels{/name}",
|
||||
"comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/428/comments",
|
||||
"events_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/428/events",
|
||||
"html_url": "https://github.com/hub4j-test-org/github-api/issues/428",
|
||||
"id": 911708519,
|
||||
"node_id": "MDU6SXNzdWU5MTE3MDg1MTk=",
|
||||
"number": 428,
|
||||
"title": "Some invalid issue name",
|
||||
"user": {
|
||||
"login": "t0m4uk1991",
|
||||
"id": 6698785,
|
||||
"node_id": "MDQ6VXNlcjY2OTg3ODU=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/6698785?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/t0m4uk1991",
|
||||
"html_url": "https://github.com/t0m4uk1991",
|
||||
"followers_url": "https://api.github.com/users/t0m4uk1991/followers",
|
||||
"following_url": "https://api.github.com/users/t0m4uk1991/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/t0m4uk1991/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/t0m4uk1991/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/t0m4uk1991/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/t0m4uk1991/orgs",
|
||||
"repos_url": "https://api.github.com/users/t0m4uk1991/repos",
|
||||
"events_url": "https://api.github.com/users/t0m4uk1991/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/t0m4uk1991/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"labels": [],
|
||||
"state": "open",
|
||||
"locked": false,
|
||||
"assignee": null,
|
||||
"assignees": [],
|
||||
"milestone": null,
|
||||
"comments": 0,
|
||||
"created_at": "2021-06-04T17:30:18Z",
|
||||
"updated_at": "2021-06-04T17:30:18Z",
|
||||
"closed_at": null,
|
||||
"author_association": "NONE",
|
||||
"active_lock_reason": null,
|
||||
"body": null,
|
||||
"closed_by": null,
|
||||
"performed_via_github_app": null
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/428",
|
||||
"repository_url": "https://api.github.com/repos/hub4j-test-org/github-api",
|
||||
"labels_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/428/labels{/name}",
|
||||
"comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/428/comments",
|
||||
"events_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/428/events",
|
||||
"html_url": "https://github.com/hub4j-test-org/github-api/issues/428",
|
||||
"id": 911708519,
|
||||
"node_id": "MDU6SXNzdWU5MTE3MDg1MTk=",
|
||||
"number": 428,
|
||||
"title": "Fixed issue name",
|
||||
"user": {
|
||||
"login": "t0m4uk1991",
|
||||
"id": 6698785,
|
||||
"node_id": "MDQ6VXNlcjY2OTg3ODU=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/6698785?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/t0m4uk1991",
|
||||
"html_url": "https://github.com/t0m4uk1991",
|
||||
"followers_url": "https://api.github.com/users/t0m4uk1991/followers",
|
||||
"following_url": "https://api.github.com/users/t0m4uk1991/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/t0m4uk1991/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/t0m4uk1991/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/t0m4uk1991/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/t0m4uk1991/orgs",
|
||||
"repos_url": "https://api.github.com/users/t0m4uk1991/repos",
|
||||
"events_url": "https://api.github.com/users/t0m4uk1991/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/t0m4uk1991/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"labels": [],
|
||||
"state": "open",
|
||||
"locked": false,
|
||||
"assignee": null,
|
||||
"assignees": [],
|
||||
"milestone": null,
|
||||
"comments": 0,
|
||||
"created_at": "2021-06-04T17:30:18Z",
|
||||
"updated_at": "2021-06-04T17:30:19Z",
|
||||
"closed_at": null,
|
||||
"author_association": "NONE",
|
||||
"active_lock_reason": null,
|
||||
"body": null,
|
||||
"closed_by": null,
|
||||
"performed_via_github_app": null
|
||||
}
|
||||
@@ -0,0 +1,66 @@
|
||||
{
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/428",
|
||||
"repository_url": "https://api.github.com/repos/hub4j-test-org/github-api",
|
||||
"labels_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/428/labels{/name}",
|
||||
"comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/428/comments",
|
||||
"events_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/428/events",
|
||||
"html_url": "https://github.com/hub4j-test-org/github-api/issues/428",
|
||||
"id": 911708519,
|
||||
"node_id": "MDU6SXNzdWU5MTE3MDg1MTk=",
|
||||
"number": 428,
|
||||
"title": "Fixed issue name",
|
||||
"user": {
|
||||
"login": "t0m4uk1991",
|
||||
"id": 6698785,
|
||||
"node_id": "MDQ6VXNlcjY2OTg3ODU=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/6698785?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/t0m4uk1991",
|
||||
"html_url": "https://github.com/t0m4uk1991",
|
||||
"followers_url": "https://api.github.com/users/t0m4uk1991/followers",
|
||||
"following_url": "https://api.github.com/users/t0m4uk1991/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/t0m4uk1991/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/t0m4uk1991/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/t0m4uk1991/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/t0m4uk1991/orgs",
|
||||
"repos_url": "https://api.github.com/users/t0m4uk1991/repos",
|
||||
"events_url": "https://api.github.com/users/t0m4uk1991/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/t0m4uk1991/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"labels": [],
|
||||
"state": "closed",
|
||||
"locked": false,
|
||||
"assignee": null,
|
||||
"assignees": [],
|
||||
"milestone": null,
|
||||
"comments": 0,
|
||||
"created_at": "2021-06-04T17:30:18Z",
|
||||
"updated_at": "2021-06-04T17:30:20Z",
|
||||
"closed_at": "2021-06-04T17:30:20Z",
|
||||
"author_association": "NONE",
|
||||
"active_lock_reason": null,
|
||||
"body": null,
|
||||
"closed_by": {
|
||||
"login": "t0m4uk1991",
|
||||
"id": 6698785,
|
||||
"node_id": "MDQ6VXNlcjY2OTg3ODU=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/6698785?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/t0m4uk1991",
|
||||
"html_url": "https://github.com/t0m4uk1991",
|
||||
"followers_url": "https://api.github.com/users/t0m4uk1991/followers",
|
||||
"following_url": "https://api.github.com/users/t0m4uk1991/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/t0m4uk1991/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/t0m4uk1991/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/t0m4uk1991/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/t0m4uk1991/orgs",
|
||||
"repos_url": "https://api.github.com/users/t0m4uk1991/repos",
|
||||
"events_url": "https://api.github.com/users/t0m4uk1991/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/t0m4uk1991/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"performed_via_github_app": null
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
[
|
||||
{
|
||||
"id": 4844454197,
|
||||
"node_id": "MDE3OlJlbmFtZWRUaXRsZUV2ZW50NDg0NDQ1NDE5Nw==",
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/events/4844454197",
|
||||
"actor": {
|
||||
"login": "t0m4uk1991",
|
||||
"id": 6698785,
|
||||
"node_id": "MDQ6VXNlcjY2OTg3ODU=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/6698785?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/t0m4uk1991",
|
||||
"html_url": "https://github.com/t0m4uk1991",
|
||||
"followers_url": "https://api.github.com/users/t0m4uk1991/followers",
|
||||
"following_url": "https://api.github.com/users/t0m4uk1991/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/t0m4uk1991/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/t0m4uk1991/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/t0m4uk1991/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/t0m4uk1991/orgs",
|
||||
"repos_url": "https://api.github.com/users/t0m4uk1991/repos",
|
||||
"events_url": "https://api.github.com/users/t0m4uk1991/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/t0m4uk1991/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"event": "renamed",
|
||||
"commit_id": null,
|
||||
"commit_url": null,
|
||||
"created_at": "2021-06-04T17:30:19Z",
|
||||
"rename": {
|
||||
"from": "Some invalid issue name",
|
||||
"to": "Fixed issue name"
|
||||
},
|
||||
"performed_via_github_app": null
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,80 @@
|
||||
{
|
||||
"id": 4844454197,
|
||||
"node_id": "MDE3OlJlbmFtZWRUaXRsZUV2ZW50NDg0NDQ1NDE5Nw==",
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/events/4844454197",
|
||||
"actor": {
|
||||
"login": "t0m4uk1991",
|
||||
"id": 6698785,
|
||||
"node_id": "MDQ6VXNlcjY2OTg3ODU=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/6698785?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/t0m4uk1991",
|
||||
"html_url": "https://github.com/t0m4uk1991",
|
||||
"followers_url": "https://api.github.com/users/t0m4uk1991/followers",
|
||||
"following_url": "https://api.github.com/users/t0m4uk1991/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/t0m4uk1991/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/t0m4uk1991/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/t0m4uk1991/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/t0m4uk1991/orgs",
|
||||
"repos_url": "https://api.github.com/users/t0m4uk1991/repos",
|
||||
"events_url": "https://api.github.com/users/t0m4uk1991/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/t0m4uk1991/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"event": "renamed",
|
||||
"commit_id": null,
|
||||
"commit_url": null,
|
||||
"created_at": "2021-06-04T17:30:19Z",
|
||||
"rename": {
|
||||
"from": "Some invalid issue name",
|
||||
"to": "Fixed issue name"
|
||||
},
|
||||
"issue": {
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/428",
|
||||
"repository_url": "https://api.github.com/repos/hub4j-test-org/github-api",
|
||||
"labels_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/428/labels{/name}",
|
||||
"comments_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/428/comments",
|
||||
"events_url": "https://api.github.com/repos/hub4j-test-org/github-api/issues/428/events",
|
||||
"html_url": "https://github.com/hub4j-test-org/github-api/issues/428",
|
||||
"id": 911708519,
|
||||
"node_id": "MDU6SXNzdWU5MTE3MDg1MTk=",
|
||||
"number": 428,
|
||||
"title": "Fixed issue name",
|
||||
"user": {
|
||||
"login": "t0m4uk1991",
|
||||
"id": 6698785,
|
||||
"node_id": "MDQ6VXNlcjY2OTg3ODU=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/6698785?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/t0m4uk1991",
|
||||
"html_url": "https://github.com/t0m4uk1991",
|
||||
"followers_url": "https://api.github.com/users/t0m4uk1991/followers",
|
||||
"following_url": "https://api.github.com/users/t0m4uk1991/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/t0m4uk1991/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/t0m4uk1991/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/t0m4uk1991/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/t0m4uk1991/orgs",
|
||||
"repos_url": "https://api.github.com/users/t0m4uk1991/repos",
|
||||
"events_url": "https://api.github.com/users/t0m4uk1991/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/t0m4uk1991/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"labels": [],
|
||||
"state": "open",
|
||||
"locked": false,
|
||||
"assignee": null,
|
||||
"assignees": [],
|
||||
"milestone": null,
|
||||
"comments": 0,
|
||||
"created_at": "2021-06-04T17:30:18Z",
|
||||
"updated_at": "2021-06-04T17:30:19Z",
|
||||
"closed_at": null,
|
||||
"author_association": "NONE",
|
||||
"active_lock_reason": null,
|
||||
"body": null,
|
||||
"performed_via_github_app": null
|
||||
},
|
||||
"performed_via_github_app": null
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"login": "t0m4uk1991",
|
||||
"id": 6698785,
|
||||
"node_id": "MDQ6VXNlcjY2OTg3ODU=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/6698785?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/t0m4uk1991",
|
||||
"html_url": "https://github.com/t0m4uk1991",
|
||||
"followers_url": "https://api.github.com/users/t0m4uk1991/followers",
|
||||
"following_url": "https://api.github.com/users/t0m4uk1991/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/t0m4uk1991/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/t0m4uk1991/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/t0m4uk1991/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/t0m4uk1991/orgs",
|
||||
"repos_url": "https://api.github.com/users/t0m4uk1991/repos",
|
||||
"events_url": "https://api.github.com/users/t0m4uk1991/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/t0m4uk1991/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false,
|
||||
"name": null,
|
||||
"company": null,
|
||||
"blog": "https://t0m4uk1991.github.io",
|
||||
"location": "Ukraine",
|
||||
"email": "t0m4uk1991@gmail.com",
|
||||
"hireable": true,
|
||||
"bio": null,
|
||||
"twitter_username": null,
|
||||
"public_repos": 13,
|
||||
"public_gists": 10,
|
||||
"followers": 2,
|
||||
"following": 2,
|
||||
"created_at": "2014-02-16T20:43:03Z",
|
||||
"updated_at": "2021-06-04T17:22:50Z",
|
||||
"private_gists": 2,
|
||||
"total_private_repos": 16,
|
||||
"owned_private_repos": 16,
|
||||
"disk_usage": 23717,
|
||||
"collaborators": 0,
|
||||
"two_factor_authentication": false,
|
||||
"plan": {
|
||||
"name": "free",
|
||||
"space": 976562499,
|
||||
"collaborators": 0,
|
||||
"private_repos": 10000
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"id": "0c7963ee-9d88-49ed-b6e0-2e9f86f6d172",
|
||||
"name": "orgs_hub4j-test-org",
|
||||
"request": {
|
||||
"url": "/orgs/hub4j-test-org",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "orgs_hub4j-test-org-2.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 04 Jun 2021 17:30:17 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"087e4632cb5ac0fdd2c25fa49de6c38b8e15ae01fcfffe18f1cebbf755461856\"",
|
||||
"Last-Modified": "Thu, 04 Jun 2020 05:56:10 GMT",
|
||||
"X-OAuth-Scopes": "admin:org, repo, user",
|
||||
"X-Accepted-OAuth-Scopes": "admin:org, read:org, repo, user, write:org",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4965",
|
||||
"X-RateLimit-Reset": "1622831137",
|
||||
"X-RateLimit-Used": "35",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "BEAE:3CFD:23F092E:24A55E9:60BA6329"
|
||||
}
|
||||
},
|
||||
"uuid": "0c7963ee-9d88-49ed-b6e0-2e9f86f6d172",
|
||||
"persistent": true,
|
||||
"insertionIndex": 2
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"id": "6602a1ef-19d1-4443-86d2-4e581dda95d7",
|
||||
"name": "repos_hub4j-test-org_github-api",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "repos_hub4j-test-org_github-api-3.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 04 Jun 2021 17:30:18 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"ddd2a544ff3dff3aaeadb5d03e15f1ba9b75ce7dce55a39f0be64baea5d710fa\"",
|
||||
"Last-Modified": "Mon, 19 Apr 2021 20:09:00 GMT",
|
||||
"X-OAuth-Scopes": "admin:org, repo, user",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4964",
|
||||
"X-RateLimit-Reset": "1622831137",
|
||||
"X-RateLimit-Used": "36",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "ACA8:FD84:83718A:8699D8:60BA6329"
|
||||
}
|
||||
},
|
||||
"uuid": "6602a1ef-19d1-4443-86d2-4e581dda95d7",
|
||||
"persistent": true,
|
||||
"insertionIndex": 3
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
{
|
||||
"id": "4b5cc620-1ca6-4fcb-9a7c-2a282f8661d3",
|
||||
"name": "repos_hub4j-test-org_github-api_issues",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/issues",
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
},
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"assignees\":[],\"title\":\"Some invalid issue name\",\"labels\":[]}",
|
||||
"ignoreArrayOrder": true,
|
||||
"ignoreExtraElements": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"response": {
|
||||
"status": 201,
|
||||
"bodyFileName": "repos_hub4j-test-org_github-api_issues-4.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 04 Jun 2021 17:30:18 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "\"b2bb1abcde9ed0487f4361fbf9643c387693d6d16db8c5cb41ef68e48826ab75\"",
|
||||
"X-OAuth-Scopes": "admin:org, repo, user",
|
||||
"X-Accepted-OAuth-Scopes": "",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4963",
|
||||
"X-RateLimit-Reset": "1622831137",
|
||||
"X-RateLimit-Used": "37",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "7333:09A5:129955:182A8A:60BA632A",
|
||||
"Location": "https://api.github.com/repos/hub4j-test-org/github-api/issues/428"
|
||||
}
|
||||
},
|
||||
"uuid": "4b5cc620-1ca6-4fcb-9a7c-2a282f8661d3",
|
||||
"persistent": true,
|
||||
"insertionIndex": 4
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"id": "cfb007fa-6230-41a5-88b7-ab3fc5947ee4",
|
||||
"name": "repos_hub4j-test-org_github-api_issues_428",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/issues/428",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
},
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"title\":\"Fixed issue name\"}",
|
||||
"ignoreArrayOrder": true,
|
||||
"ignoreExtraElements": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "repos_hub4j-test-org_github-api_issues_428-5.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 04 Jun 2021 17:30:19 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"44b1afd03db61db683675628136dfbc8bdd836b9cf68c4b1e4b8d55b4757b4fa\"",
|
||||
"X-OAuth-Scopes": "admin:org, repo, user",
|
||||
"X-Accepted-OAuth-Scopes": "",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4962",
|
||||
"X-RateLimit-Reset": "1622831137",
|
||||
"X-RateLimit-Used": "38",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "A440:CD37:455A92D:46B09C6:60BA632A"
|
||||
}
|
||||
},
|
||||
"uuid": "cfb007fa-6230-41a5-88b7-ab3fc5947ee4",
|
||||
"persistent": true,
|
||||
"insertionIndex": 5
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"id": "5c954603-0b68-4aa4-ae85-68da32a54633",
|
||||
"name": "repos_hub4j-test-org_github-api_issues_428",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/issues/428",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
},
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"state\":\"closed\"}",
|
||||
"ignoreArrayOrder": true,
|
||||
"ignoreExtraElements": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "repos_hub4j-test-org_github-api_issues_428-8.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 04 Jun 2021 17:30:20 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"0ee6b1428cd142490f980c4d763aae4fe6975eb3c1b55781bfa4de3c0ed041e7\"",
|
||||
"X-OAuth-Scopes": "admin:org, repo, user",
|
||||
"X-Accepted-OAuth-Scopes": "",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4959",
|
||||
"X-RateLimit-Reset": "1622831137",
|
||||
"X-RateLimit-Used": "41",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "356A:135F2:F26AFC:F70BEA:60BA632C"
|
||||
}
|
||||
},
|
||||
"uuid": "5c954603-0b68-4aa4-ae85-68da32a54633",
|
||||
"persistent": true,
|
||||
"insertionIndex": 8
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"id": "10e1739d-41e9-45f6-91f0-f04e7750b9a9",
|
||||
"name": "repos_hub4j-test-org_github-api_issues_428_events",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/issues/428/events",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "repos_hub4j-test-org_github-api_issues_428_events-6.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 04 Jun 2021 17:30:19 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"13a8280721b59e982615e90bbf30448896b0f9a4e260d8d8af14d1f5428dd208\"",
|
||||
"X-OAuth-Scopes": "admin:org, repo, user",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4961",
|
||||
"X-RateLimit-Reset": "1622831137",
|
||||
"X-RateLimit-Used": "39",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "6927:09AD:1B2A938:1BBAC09:60BA632B"
|
||||
}
|
||||
},
|
||||
"uuid": "10e1739d-41e9-45f6-91f0-f04e7750b9a9",
|
||||
"persistent": true,
|
||||
"insertionIndex": 6
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"id": "c9de3154-6e39-46fd-8420-f892845a9c52",
|
||||
"name": "repos_hub4j-test-org_github-api_issues_events_4844454197",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/github-api/issues/events/4844454197",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "repos_hub4j-test-org_github-api_issues_events_4844454197-7.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 04 Jun 2021 17:30:20 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"26091c6a14880705802e4633ce8c98f9adacc284d96784c6a10684f9424a2d84\"",
|
||||
"Last-Modified": "Fri, 04 Jun 2021 17:30:19 GMT",
|
||||
"X-OAuth-Scopes": "admin:org, repo, user",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4960",
|
||||
"X-RateLimit-Reset": "1622831137",
|
||||
"X-RateLimit-Used": "40",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "3728:CD37:455AA6F:46B0B12:60BA632B"
|
||||
}
|
||||
},
|
||||
"uuid": "c9de3154-6e39-46fd-8420-f892845a9c52",
|
||||
"persistent": true,
|
||||
"insertionIndex": 7
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"id": "323f65e4-0020-4198-8085-149d1b6c7771",
|
||||
"name": "user",
|
||||
"request": {
|
||||
"url": "/user",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "user-1.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 04 Jun 2021 17:30:16 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"1892c767d70ff0bf3dcb793be529d5dd52d62f5770ef6118a7804cf9560e1738\"",
|
||||
"Last-Modified": "Fri, 04 Jun 2021 17:22:50 GMT",
|
||||
"X-OAuth-Scopes": "admin:org, repo, user",
|
||||
"X-Accepted-OAuth-Scopes": "",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4967",
|
||||
"X-RateLimit-Reset": "1622831137",
|
||||
"X-RateLimit-Used": "33",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E281:13D7A:2F1A4EE:3003FFD:60BA6328"
|
||||
}
|
||||
},
|
||||
"uuid": "323f65e4-0020-4198-8085-149d1b6c7771",
|
||||
"persistent": true,
|
||||
"insertionIndex": 1
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"login": "t0m4uk1991",
|
||||
"id": 6698785,
|
||||
"node_id": "MDQ6VXNlcjY2OTg3ODU=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/6698785?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/t0m4uk1991",
|
||||
"html_url": "https://github.com/t0m4uk1991",
|
||||
"followers_url": "https://api.github.com/users/t0m4uk1991/followers",
|
||||
"following_url": "https://api.github.com/users/t0m4uk1991/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/t0m4uk1991/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/t0m4uk1991/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/t0m4uk1991/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/t0m4uk1991/orgs",
|
||||
"repos_url": "https://api.github.com/users/t0m4uk1991/repos",
|
||||
"events_url": "https://api.github.com/users/t0m4uk1991/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/t0m4uk1991/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false,
|
||||
"name": null,
|
||||
"company": null,
|
||||
"blog": "https://t0m4uk1991.github.io",
|
||||
"location": "Ukraine",
|
||||
"email": "t0m4uk1991@gmail.com",
|
||||
"hireable": true,
|
||||
"bio": null,
|
||||
"twitter_username": null,
|
||||
"public_repos": 13,
|
||||
"public_gists": 10,
|
||||
"followers": 2,
|
||||
"following": 2,
|
||||
"created_at": "2014-02-16T20:43:03Z",
|
||||
"updated_at": "2021-06-04T17:22:50Z",
|
||||
"private_gists": 2,
|
||||
"total_private_repos": 16,
|
||||
"owned_private_repos": 16,
|
||||
"disk_usage": 23717,
|
||||
"collaborators": 0,
|
||||
"two_factor_authentication": false,
|
||||
"plan": {
|
||||
"name": "free",
|
||||
"space": 976562499,
|
||||
"collaborators": 0,
|
||||
"private_repos": 10000
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"id": "ec2e92c0-8c12-471e-a3b2-bd6996928aa3",
|
||||
"name": "user",
|
||||
"request": {
|
||||
"url": "/user",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "user-8.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 04 Jun 2021 17:30:22 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"1892c767d70ff0bf3dcb793be529d5dd52d62f5770ef6118a7804cf9560e1738\"",
|
||||
"Last-Modified": "Fri, 04 Jun 2021 17:22:50 GMT",
|
||||
"X-OAuth-Scopes": "admin:org, repo, user",
|
||||
"X-Accepted-OAuth-Scopes": "",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4956",
|
||||
"X-RateLimit-Reset": "1622831137",
|
||||
"X-RateLimit-Used": "44",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "4A0F:DFC2:1EAC7A:1FA9EB:60BA632D"
|
||||
}
|
||||
},
|
||||
"uuid": "ec2e92c0-8c12-471e-a3b2-bd6996928aa3",
|
||||
"persistent": true,
|
||||
"insertionIndex": 8
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"login": "t0m4uk1991",
|
||||
"id": 6698785,
|
||||
"node_id": "MDQ6VXNlcjY2OTg3ODU=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/6698785?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/t0m4uk1991",
|
||||
"html_url": "https://github.com/t0m4uk1991",
|
||||
"followers_url": "https://api.github.com/users/t0m4uk1991/followers",
|
||||
"following_url": "https://api.github.com/users/t0m4uk1991/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/t0m4uk1991/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/t0m4uk1991/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/t0m4uk1991/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/t0m4uk1991/orgs",
|
||||
"repos_url": "https://api.github.com/users/t0m4uk1991/repos",
|
||||
"events_url": "https://api.github.com/users/t0m4uk1991/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/t0m4uk1991/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false,
|
||||
"name": null,
|
||||
"company": null,
|
||||
"blog": "https://t0m4uk1991.github.io",
|
||||
"location": "Ukraine",
|
||||
"email": "t0m4uk1991@gmail.com",
|
||||
"hireable": true,
|
||||
"bio": null,
|
||||
"twitter_username": null,
|
||||
"public_repos": 13,
|
||||
"public_gists": 10,
|
||||
"followers": 2,
|
||||
"following": 2,
|
||||
"created_at": "2014-02-16T20:43:03Z",
|
||||
"updated_at": "2021-06-04T17:22:50Z",
|
||||
"private_gists": 2,
|
||||
"total_private_repos": 16,
|
||||
"owned_private_repos": 16,
|
||||
"disk_usage": 23717,
|
||||
"collaborators": 0,
|
||||
"two_factor_authentication": false,
|
||||
"plan": {
|
||||
"name": "free",
|
||||
"space": 976562499,
|
||||
"collaborators": 0,
|
||||
"private_repos": 10000
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"id": "b608fa58-9c7d-4199-94cf-1123b31e8ce0",
|
||||
"name": "user",
|
||||
"request": {
|
||||
"url": "/user",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "user-17.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 04 Jun 2021 17:30:21 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"1892c767d70ff0bf3dcb793be529d5dd52d62f5770ef6118a7804cf9560e1738\"",
|
||||
"Last-Modified": "Fri, 04 Jun 2021 17:22:50 GMT",
|
||||
"X-OAuth-Scopes": "admin:org, repo, user",
|
||||
"X-Accepted-OAuth-Scopes": "",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4958",
|
||||
"X-RateLimit-Reset": "1622831137",
|
||||
"X-RateLimit-Used": "42",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "EDB3:09A5:12999A:182ADE:60BA632D"
|
||||
}
|
||||
},
|
||||
"uuid": "b608fa58-9c7d-4199-94cf-1123b31e8ce0",
|
||||
"persistent": true,
|
||||
"insertionIndex": 17
|
||||
}
|
||||
@@ -0,0 +1,132 @@
|
||||
{
|
||||
"id": 375534019,
|
||||
"node_id": "MDEwOlJlcG9zaXRvcnkzNzU1MzQwMTk=",
|
||||
"name": "testCreateRelease",
|
||||
"full_name": "hub4j-test-org/testCreateRelease",
|
||||
"private": false,
|
||||
"owner": {
|
||||
"login": "hub4j-test-org",
|
||||
"id": 7544739,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/hub4j-test-org",
|
||||
"html_url": "https://github.com/hub4j-test-org",
|
||||
"followers_url": "https://api.github.com/users/hub4j-test-org/followers",
|
||||
"following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/hub4j-test-org/orgs",
|
||||
"repos_url": "https://api.github.com/users/hub4j-test-org/repos",
|
||||
"events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/hub4j-test-org/received_events",
|
||||
"type": "Organization",
|
||||
"site_admin": false
|
||||
},
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease",
|
||||
"description": null,
|
||||
"fork": false,
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease",
|
||||
"forks_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/forks",
|
||||
"keys_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/keys{/key_id}",
|
||||
"collaborators_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/collaborators{/collaborator}",
|
||||
"teams_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/teams",
|
||||
"hooks_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/hooks",
|
||||
"issue_events_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/issues/events{/number}",
|
||||
"events_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/events",
|
||||
"assignees_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/assignees{/user}",
|
||||
"branches_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/branches{/branch}",
|
||||
"tags_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tags",
|
||||
"blobs_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/blobs{/sha}",
|
||||
"git_tags_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/tags{/sha}",
|
||||
"git_refs_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/refs{/sha}",
|
||||
"trees_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/trees{/sha}",
|
||||
"statuses_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/statuses/{sha}",
|
||||
"languages_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/languages",
|
||||
"stargazers_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/stargazers",
|
||||
"contributors_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/contributors",
|
||||
"subscribers_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/subscribers",
|
||||
"subscription_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/subscription",
|
||||
"commits_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/commits{/sha}",
|
||||
"git_commits_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/commits{/sha}",
|
||||
"comments_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/comments{/number}",
|
||||
"issue_comment_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/issues/comments{/number}",
|
||||
"contents_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/contents/{+path}",
|
||||
"compare_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/compare/{base}...{head}",
|
||||
"merges_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/merges",
|
||||
"archive_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/{archive_format}{/ref}",
|
||||
"downloads_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/downloads",
|
||||
"issues_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/issues{/number}",
|
||||
"pulls_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/pulls{/number}",
|
||||
"milestones_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/milestones{/number}",
|
||||
"notifications_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/notifications{?since,all,participating}",
|
||||
"labels_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/labels{/name}",
|
||||
"releases_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases{/id}",
|
||||
"deployments_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/deployments",
|
||||
"created_at": "2021-06-10T01:25:59Z",
|
||||
"updated_at": "2021-06-10T01:31:14Z",
|
||||
"pushed_at": "2021-06-11T06:56:52Z",
|
||||
"git_url": "git://github.com/hub4j-test-org/testCreateRelease.git",
|
||||
"ssh_url": "git@github.com:hub4j-test-org/testCreateRelease.git",
|
||||
"clone_url": "https://github.com/hub4j-test-org/testCreateRelease.git",
|
||||
"svn_url": "https://github.com/hub4j-test-org/testCreateRelease",
|
||||
"homepage": null,
|
||||
"size": 11948,
|
||||
"stargazers_count": 0,
|
||||
"watchers_count": 0,
|
||||
"language": "Java",
|
||||
"has_issues": false,
|
||||
"has_projects": false,
|
||||
"has_downloads": true,
|
||||
"has_wiki": false,
|
||||
"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": "main",
|
||||
"permissions": {
|
||||
"admin": true,
|
||||
"push": true,
|
||||
"pull": true
|
||||
},
|
||||
"temp_clone_token": "",
|
||||
"allow_squash_merge": true,
|
||||
"allow_merge_commit": true,
|
||||
"allow_rebase_merge": true,
|
||||
"delete_branch_on_merge": false,
|
||||
"organization": {
|
||||
"login": "hub4j-test-org",
|
||||
"id": 7544739,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/hub4j-test-org",
|
||||
"html_url": "https://github.com/hub4j-test-org",
|
||||
"followers_url": "https://api.github.com/users/hub4j-test-org/followers",
|
||||
"following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/hub4j-test-org/orgs",
|
||||
"repos_url": "https://api.github.com/users/hub4j-test-org/repos",
|
||||
"events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/hub4j-test-org/received_events",
|
||||
"type": "Organization",
|
||||
"site_admin": false
|
||||
},
|
||||
"network_count": 0,
|
||||
"subscribers_count": 11
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44460489",
|
||||
"assets_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44460489/assets",
|
||||
"upload_url": "https://uploads.github.com/repos/hub4j-test-org/testCreateRelease/releases/44460489/assets{?name,label}",
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease/releases/tag/testCreateDoubleReleaseFails",
|
||||
"id": 44460489,
|
||||
"author": {
|
||||
"login": "jlengrand",
|
||||
"id": 921666,
|
||||
"node_id": "MDQ6VXNlcjkyMTY2Ng==",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/921666?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/jlengrand",
|
||||
"html_url": "https://github.com/jlengrand",
|
||||
"followers_url": "https://api.github.com/users/jlengrand/followers",
|
||||
"following_url": "https://api.github.com/users/jlengrand/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/jlengrand/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/jlengrand/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/jlengrand/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/jlengrand/orgs",
|
||||
"repos_url": "https://api.github.com/users/jlengrand/repos",
|
||||
"events_url": "https://api.github.com/users/jlengrand/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/jlengrand/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"node_id": "MDc6UmVsZWFzZTQ0NDYwNDg5",
|
||||
"tag_name": "testCreateDoubleReleaseFails",
|
||||
"target_commitish": "main",
|
||||
"name": null,
|
||||
"draft": false,
|
||||
"prerelease": false,
|
||||
"created_at": "2021-06-02T21:59:14Z",
|
||||
"published_at": "2021-06-11T07:05:00Z",
|
||||
"assets": [],
|
||||
"tarball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tarball/testCreateDoubleReleaseFails",
|
||||
"zipball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/zipball/testCreateDoubleReleaseFails",
|
||||
"body": null
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44460489",
|
||||
"assets_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44460489/assets",
|
||||
"upload_url": "https://uploads.github.com/repos/hub4j-test-org/testCreateRelease/releases/44460489/assets{?name,label}",
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease/releases/tag/testCreateDoubleReleaseFails",
|
||||
"id": 44460489,
|
||||
"author": {
|
||||
"login": "jlengrand",
|
||||
"id": 921666,
|
||||
"node_id": "MDQ6VXNlcjkyMTY2Ng==",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/921666?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/jlengrand",
|
||||
"html_url": "https://github.com/jlengrand",
|
||||
"followers_url": "https://api.github.com/users/jlengrand/followers",
|
||||
"following_url": "https://api.github.com/users/jlengrand/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/jlengrand/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/jlengrand/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/jlengrand/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/jlengrand/orgs",
|
||||
"repos_url": "https://api.github.com/users/jlengrand/repos",
|
||||
"events_url": "https://api.github.com/users/jlengrand/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/jlengrand/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"node_id": "MDc6UmVsZWFzZTQ0NDYwNDg5",
|
||||
"tag_name": "testCreateDoubleReleaseFails",
|
||||
"target_commitish": "main",
|
||||
"name": null,
|
||||
"draft": false,
|
||||
"prerelease": false,
|
||||
"created_at": "2021-06-02T21:59:14Z",
|
||||
"published_at": "2021-06-11T07:05:00Z",
|
||||
"assets": [],
|
||||
"tarball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tarball/testCreateDoubleReleaseFails",
|
||||
"zipball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/zipball/testCreateDoubleReleaseFails",
|
||||
"body": null
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"id": "0db03aa5-b253-4c7b-a88c-be8b9027d0fb",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "repos_hub4j-test-org_testcreaterelease-1.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:04:59 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"de954bc365c835a2cea1cff19b80e4ab637089a5abadc8e6a22e6af5d00a28b7\"",
|
||||
"Last-Modified": "Thu, 10 Jun 2021 01:31:14 GMT",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4994",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "6",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E687:A57F:1F1412C:1FB700E:60C30B1B"
|
||||
}
|
||||
},
|
||||
"uuid": "0db03aa5-b253-4c7b-a88c-be8b9027d0fb",
|
||||
"persistent": true,
|
||||
"insertionIndex": 1
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
{
|
||||
"id": "7ca37ba3-c5b3-4c37-8590-46610325fc1c",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases",
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
},
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"tag_name\":\"testCreateDoubleReleaseFails\"}",
|
||||
"ignoreArrayOrder": true,
|
||||
"ignoreExtraElements": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"response": {
|
||||
"status": 201,
|
||||
"bodyFileName": "repos_hub4j-test-org_testcreaterelease_releases-2.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:05:00 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "\"1abc54330badd89bb2fb1b3c95846e2a9bf84da1c8618f66614fad4460f52dc5\"",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4993",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "7",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E688:E6B8:79DF6A:7E42B9:60C30B1C",
|
||||
"Location": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44460489"
|
||||
}
|
||||
},
|
||||
"uuid": "7ca37ba3-c5b3-4c37-8590-46610325fc1c",
|
||||
"persistent": true,
|
||||
"scenarioName": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases",
|
||||
"requiredScenarioState": "Started",
|
||||
"newScenarioState": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-2",
|
||||
"insertionIndex": 2
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"id": "6494df7f-761b-4199-8f09-b6de3a61f5cd",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases",
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
},
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"tag_name\":\"testCreateDoubleReleaseFails\"}",
|
||||
"ignoreArrayOrder": true,
|
||||
"ignoreExtraElements": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"response": {
|
||||
"status": 422,
|
||||
"body": "{\"message\":\"Validation Failed\",\"errors\":[{\"resource\":\"Release\",\"code\":\"already_exists\",\"field\":\"tag_name\"}],\"documentation_url\":\"https://docs.github.com/rest/reference/repos#create-a-release\"}",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:05:01 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4991",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "9",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"Vary": "Accept-Encoding, Accept, X-Requested-With",
|
||||
"X-GitHub-Request-Id": "E68A:A4AB:35F992B:3743C1F:60C30B1D"
|
||||
}
|
||||
},
|
||||
"uuid": "6494df7f-761b-4199-8f09-b6de3a61f5cd",
|
||||
"persistent": true,
|
||||
"scenarioName": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases",
|
||||
"requiredScenarioState": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-2",
|
||||
"insertionIndex": 4
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"id": "e69f369e-7797-4046-b57c-d3c0bc2c7001",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases_44460489",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases/44460489",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "repos_hub4j-test-org_testcreaterelease_releases_44460489-3.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:05:01 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"1abc54330badd89bb2fb1b3c95846e2a9bf84da1c8618f66614fad4460f52dc5\"",
|
||||
"Last-Modified": "Fri, 11 Jun 2021 07:05:00 GMT",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4992",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "8",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E689:621F:F0A6B9:F5F283:60C30B1C"
|
||||
}
|
||||
},
|
||||
"uuid": "e69f369e-7797-4046-b57c-d3c0bc2c7001",
|
||||
"persistent": true,
|
||||
"scenarioName": "scenario-2-repos-hub4j-test-org-testCreateRelease-releases-44460489",
|
||||
"requiredScenarioState": "Started",
|
||||
"newScenarioState": "scenario-2-repos-hub4j-test-org-testCreateRelease-releases-44460489-2",
|
||||
"insertionIndex": 3
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"id": "bf611d1a-423e-40ea-84e4-75e4877f3ca9",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases_44460489",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases/44460489",
|
||||
"method": "DELETE",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 204,
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:05:02 GMT",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4990",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "10",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"Vary": "Accept-Encoding, Accept, X-Requested-With",
|
||||
"X-GitHub-Request-Id": "E68B:2A60:FAB51A:10026C5:60C30B1D"
|
||||
}
|
||||
},
|
||||
"uuid": "bf611d1a-423e-40ea-84e4-75e4877f3ca9",
|
||||
"persistent": true,
|
||||
"insertionIndex": 5
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"id": "7ec138a8-47d9-498d-932d-19f632314ef2",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases_44460489",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases/44460489",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 404,
|
||||
"body": "{\"message\":\"Not Found\",\"documentation_url\":\"https://docs.github.com/rest/reference/repos#get-a-release\"}",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:05:02 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4989",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "11",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"Vary": "Accept-Encoding, Accept, X-Requested-With",
|
||||
"X-GitHub-Request-Id": "E68C:E6B6:148069:17FBD1:60C30B1E"
|
||||
}
|
||||
},
|
||||
"uuid": "7ec138a8-47d9-498d-932d-19f632314ef2",
|
||||
"persistent": true,
|
||||
"scenarioName": "scenario-2-repos-hub4j-test-org-testCreateRelease-releases-44460489",
|
||||
"requiredScenarioState": "scenario-2-repos-hub4j-test-org-testCreateRelease-releases-44460489-2",
|
||||
"insertionIndex": 6
|
||||
}
|
||||
@@ -0,0 +1,132 @@
|
||||
{
|
||||
"id": 375534019,
|
||||
"node_id": "MDEwOlJlcG9zaXRvcnkzNzU1MzQwMTk=",
|
||||
"name": "testCreateRelease",
|
||||
"full_name": "hub4j-test-org/testCreateRelease",
|
||||
"private": false,
|
||||
"owner": {
|
||||
"login": "hub4j-test-org",
|
||||
"id": 7544739,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/hub4j-test-org",
|
||||
"html_url": "https://github.com/hub4j-test-org",
|
||||
"followers_url": "https://api.github.com/users/hub4j-test-org/followers",
|
||||
"following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/hub4j-test-org/orgs",
|
||||
"repos_url": "https://api.github.com/users/hub4j-test-org/repos",
|
||||
"events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/hub4j-test-org/received_events",
|
||||
"type": "Organization",
|
||||
"site_admin": false
|
||||
},
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease",
|
||||
"description": null,
|
||||
"fork": false,
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease",
|
||||
"forks_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/forks",
|
||||
"keys_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/keys{/key_id}",
|
||||
"collaborators_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/collaborators{/collaborator}",
|
||||
"teams_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/teams",
|
||||
"hooks_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/hooks",
|
||||
"issue_events_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/issues/events{/number}",
|
||||
"events_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/events",
|
||||
"assignees_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/assignees{/user}",
|
||||
"branches_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/branches{/branch}",
|
||||
"tags_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tags",
|
||||
"blobs_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/blobs{/sha}",
|
||||
"git_tags_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/tags{/sha}",
|
||||
"git_refs_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/refs{/sha}",
|
||||
"trees_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/trees{/sha}",
|
||||
"statuses_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/statuses/{sha}",
|
||||
"languages_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/languages",
|
||||
"stargazers_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/stargazers",
|
||||
"contributors_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/contributors",
|
||||
"subscribers_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/subscribers",
|
||||
"subscription_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/subscription",
|
||||
"commits_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/commits{/sha}",
|
||||
"git_commits_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/commits{/sha}",
|
||||
"comments_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/comments{/number}",
|
||||
"issue_comment_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/issues/comments{/number}",
|
||||
"contents_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/contents/{+path}",
|
||||
"compare_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/compare/{base}...{head}",
|
||||
"merges_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/merges",
|
||||
"archive_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/{archive_format}{/ref}",
|
||||
"downloads_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/downloads",
|
||||
"issues_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/issues{/number}",
|
||||
"pulls_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/pulls{/number}",
|
||||
"milestones_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/milestones{/number}",
|
||||
"notifications_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/notifications{?since,all,participating}",
|
||||
"labels_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/labels{/name}",
|
||||
"releases_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases{/id}",
|
||||
"deployments_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/deployments",
|
||||
"created_at": "2021-06-10T01:25:59Z",
|
||||
"updated_at": "2021-06-10T01:31:14Z",
|
||||
"pushed_at": "2021-06-14T20:03:30Z",
|
||||
"git_url": "git://github.com/hub4j-test-org/testCreateRelease.git",
|
||||
"ssh_url": "git@github.com:hub4j-test-org/testCreateRelease.git",
|
||||
"clone_url": "https://github.com/hub4j-test-org/testCreateRelease.git",
|
||||
"svn_url": "https://github.com/hub4j-test-org/testCreateRelease",
|
||||
"homepage": null,
|
||||
"size": 11948,
|
||||
"stargazers_count": 0,
|
||||
"watchers_count": 0,
|
||||
"language": "Java",
|
||||
"has_issues": false,
|
||||
"has_projects": false,
|
||||
"has_downloads": true,
|
||||
"has_wiki": false,
|
||||
"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": "main",
|
||||
"permissions": {
|
||||
"admin": true,
|
||||
"push": true,
|
||||
"pull": true
|
||||
},
|
||||
"temp_clone_token": "",
|
||||
"allow_squash_merge": true,
|
||||
"allow_merge_commit": true,
|
||||
"allow_rebase_merge": true,
|
||||
"delete_branch_on_merge": false,
|
||||
"organization": {
|
||||
"login": "hub4j-test-org",
|
||||
"id": 7544739,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/hub4j-test-org",
|
||||
"html_url": "https://github.com/hub4j-test-org",
|
||||
"followers_url": "https://api.github.com/users/hub4j-test-org/followers",
|
||||
"following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/hub4j-test-org/orgs",
|
||||
"repos_url": "https://api.github.com/users/hub4j-test-org/repos",
|
||||
"events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/hub4j-test-org/received_events",
|
||||
"type": "Organization",
|
||||
"site_admin": false
|
||||
},
|
||||
"network_count": 0,
|
||||
"subscribers_count": 11
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"login": "bitwiseman",
|
||||
"id": 1958953,
|
||||
"node_id": "MDQ6VXNlcjE5NTg5NTM=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/1958953?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/bitwiseman",
|
||||
"html_url": "https://github.com/bitwiseman",
|
||||
"followers_url": "https://api.github.com/users/bitwiseman/followers",
|
||||
"following_url": "https://api.github.com/users/bitwiseman/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/bitwiseman/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/bitwiseman/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/bitwiseman/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/bitwiseman/orgs",
|
||||
"repos_url": "https://api.github.com/users/bitwiseman/repos",
|
||||
"events_url": "https://api.github.com/users/bitwiseman/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/bitwiseman/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false,
|
||||
"name": "Liam Newman",
|
||||
"company": "Cloudbees, Inc.",
|
||||
"blog": "",
|
||||
"location": "Seattle, WA, USA",
|
||||
"email": "bitwiseman@gmail.com",
|
||||
"hireable": null,
|
||||
"bio": null,
|
||||
"twitter_username": "bitwiseman",
|
||||
"public_repos": 209,
|
||||
"public_gists": 8,
|
||||
"followers": 187,
|
||||
"following": 12,
|
||||
"created_at": "2012-07-11T20:38:33Z",
|
||||
"updated_at": "2021-06-14T20:00:35Z",
|
||||
"private_gists": 19,
|
||||
"total_private_repos": 21,
|
||||
"owned_private_repos": 0,
|
||||
"disk_usage": 33700,
|
||||
"collaborators": 0,
|
||||
"two_factor_authentication": true,
|
||||
"plan": {
|
||||
"name": "free",
|
||||
"space": 976562499,
|
||||
"collaborators": 0,
|
||||
"private_repos": 10000
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"id": "467b7a17-b090-4498-a03e-428f78110f2d",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "repos_hub4j-test-org_testcreaterelease-2.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Mon, 14 Jun 2021 20:07:53 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"32a66bfea0e2a70e2dc6c6616328f0abbea8bbc5fb6977d402c6832f472e15a7\"",
|
||||
"Last-Modified": "Thu, 10 Jun 2021 01:31:14 GMT",
|
||||
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4925",
|
||||
"X-RateLimit-Reset": "1623701637",
|
||||
"X-RateLimit-Used": "75",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "F69E:0CE1:2ECAB7:3EA336:60C7B719"
|
||||
}
|
||||
},
|
||||
"uuid": "467b7a17-b090-4498-a03e-428f78110f2d",
|
||||
"persistent": true,
|
||||
"insertionIndex": 2
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
{
|
||||
"id": "78307b46-4de1-4554-a60f-d2285eaf5ab8",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases",
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
},
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"discussion_category_name\":\"an invalid cateogry\",\"tag_name\":\"testCreateReleaseWithUnknownCategoryFails\",\"prerelease\":false,\"name\":\"release-testCreateReleaseWithUnknownCategoryFails\"}",
|
||||
"ignoreArrayOrder": true,
|
||||
"ignoreExtraElements": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"response": {
|
||||
"status": 404,
|
||||
"body": "{\"message\":\"Discussion could not be created. Make sure you passed a valid category name.\",\"documentation_url\":\"https://docs.github.com/rest/reference/repos#create-a-release\"}",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Mon, 14 Jun 2021 20:07:53 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4924",
|
||||
"X-RateLimit-Reset": "1623701637",
|
||||
"X-RateLimit-Used": "76",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"Vary": "Accept-Encoding, Accept, X-Requested-With",
|
||||
"X-GitHub-Request-Id": "F6A0:0CE8:71F565:825F84:60C7B719"
|
||||
}
|
||||
},
|
||||
"uuid": "78307b46-4de1-4554-a60f-d2285eaf5ab8",
|
||||
"persistent": true,
|
||||
"insertionIndex": 3
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"id": "b410b598-fc14-48cc-8e39-1277b3df0846",
|
||||
"name": "user",
|
||||
"request": {
|
||||
"url": "/user",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "user-1.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Mon, 14 Jun 2021 20:07:52 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"c1e456100f9b085b8b6a8fc43a8973a0aa267ed9d24814f8e51a312db9835a71\"",
|
||||
"Last-Modified": "Mon, 14 Jun 2021 20:00:35 GMT",
|
||||
"X-OAuth-Scopes": "admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete_repo, gist, notifications, repo, user, workflow, write:discussion",
|
||||
"X-Accepted-OAuth-Scopes": "",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4927",
|
||||
"X-RateLimit-Reset": "1623701637",
|
||||
"X-RateLimit-Used": "73",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "F69A:0D59:E2AB80:F2F137:60C7B718"
|
||||
}
|
||||
},
|
||||
"uuid": "b410b598-fc14-48cc-8e39-1277b3df0846",
|
||||
"persistent": true,
|
||||
"insertionIndex": 1
|
||||
}
|
||||
@@ -0,0 +1,132 @@
|
||||
{
|
||||
"id": 375534019,
|
||||
"node_id": "MDEwOlJlcG9zaXRvcnkzNzU1MzQwMTk=",
|
||||
"name": "testCreateRelease",
|
||||
"full_name": "hub4j-test-org/testCreateRelease",
|
||||
"private": false,
|
||||
"owner": {
|
||||
"login": "hub4j-test-org",
|
||||
"id": 7544739,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/hub4j-test-org",
|
||||
"html_url": "https://github.com/hub4j-test-org",
|
||||
"followers_url": "https://api.github.com/users/hub4j-test-org/followers",
|
||||
"following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/hub4j-test-org/orgs",
|
||||
"repos_url": "https://api.github.com/users/hub4j-test-org/repos",
|
||||
"events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/hub4j-test-org/received_events",
|
||||
"type": "Organization",
|
||||
"site_admin": false
|
||||
},
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease",
|
||||
"description": null,
|
||||
"fork": false,
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease",
|
||||
"forks_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/forks",
|
||||
"keys_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/keys{/key_id}",
|
||||
"collaborators_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/collaborators{/collaborator}",
|
||||
"teams_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/teams",
|
||||
"hooks_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/hooks",
|
||||
"issue_events_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/issues/events{/number}",
|
||||
"events_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/events",
|
||||
"assignees_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/assignees{/user}",
|
||||
"branches_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/branches{/branch}",
|
||||
"tags_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tags",
|
||||
"blobs_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/blobs{/sha}",
|
||||
"git_tags_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/tags{/sha}",
|
||||
"git_refs_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/refs{/sha}",
|
||||
"trees_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/trees{/sha}",
|
||||
"statuses_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/statuses/{sha}",
|
||||
"languages_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/languages",
|
||||
"stargazers_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/stargazers",
|
||||
"contributors_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/contributors",
|
||||
"subscribers_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/subscribers",
|
||||
"subscription_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/subscription",
|
||||
"commits_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/commits{/sha}",
|
||||
"git_commits_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/commits{/sha}",
|
||||
"comments_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/comments{/number}",
|
||||
"issue_comment_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/issues/comments{/number}",
|
||||
"contents_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/contents/{+path}",
|
||||
"compare_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/compare/{base}...{head}",
|
||||
"merges_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/merges",
|
||||
"archive_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/{archive_format}{/ref}",
|
||||
"downloads_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/downloads",
|
||||
"issues_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/issues{/number}",
|
||||
"pulls_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/pulls{/number}",
|
||||
"milestones_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/milestones{/number}",
|
||||
"notifications_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/notifications{?since,all,participating}",
|
||||
"labels_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/labels{/name}",
|
||||
"releases_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases{/id}",
|
||||
"deployments_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/deployments",
|
||||
"created_at": "2021-06-10T01:25:59Z",
|
||||
"updated_at": "2021-06-10T01:31:14Z",
|
||||
"pushed_at": "2021-06-10T16:14:27Z",
|
||||
"git_url": "git://github.com/hub4j-test-org/testCreateRelease.git",
|
||||
"ssh_url": "git@github.com:hub4j-test-org/testCreateRelease.git",
|
||||
"clone_url": "https://github.com/hub4j-test-org/testCreateRelease.git",
|
||||
"svn_url": "https://github.com/hub4j-test-org/testCreateRelease",
|
||||
"homepage": null,
|
||||
"size": 11948,
|
||||
"stargazers_count": 0,
|
||||
"watchers_count": 0,
|
||||
"language": "Java",
|
||||
"has_issues": false,
|
||||
"has_projects": false,
|
||||
"has_downloads": true,
|
||||
"has_wiki": false,
|
||||
"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": "main",
|
||||
"permissions": {
|
||||
"admin": true,
|
||||
"push": true,
|
||||
"pull": true
|
||||
},
|
||||
"temp_clone_token": "",
|
||||
"allow_squash_merge": true,
|
||||
"allow_merge_commit": true,
|
||||
"allow_rebase_merge": true,
|
||||
"delete_branch_on_merge": false,
|
||||
"organization": {
|
||||
"login": "hub4j-test-org",
|
||||
"id": 7544739,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/hub4j-test-org",
|
||||
"html_url": "https://github.com/hub4j-test-org",
|
||||
"followers_url": "https://api.github.com/users/hub4j-test-org/followers",
|
||||
"following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/hub4j-test-org/orgs",
|
||||
"repos_url": "https://api.github.com/users/hub4j-test-org/repos",
|
||||
"events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/hub4j-test-org/received_events",
|
||||
"type": "Organization",
|
||||
"site_admin": false
|
||||
},
|
||||
"network_count": 0,
|
||||
"subscribers_count": 11
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44460162",
|
||||
"assets_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44460162/assets",
|
||||
"upload_url": "https://uploads.github.com/repos/hub4j-test-org/testCreateRelease/releases/44460162/assets{?name,label}",
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease/releases/tag/testCreateSimpleRelease",
|
||||
"id": 44460162,
|
||||
"author": {
|
||||
"login": "jlengrand",
|
||||
"id": 921666,
|
||||
"node_id": "MDQ6VXNlcjkyMTY2Ng==",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/921666?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/jlengrand",
|
||||
"html_url": "https://github.com/jlengrand",
|
||||
"followers_url": "https://api.github.com/users/jlengrand/followers",
|
||||
"following_url": "https://api.github.com/users/jlengrand/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/jlengrand/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/jlengrand/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/jlengrand/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/jlengrand/orgs",
|
||||
"repos_url": "https://api.github.com/users/jlengrand/repos",
|
||||
"events_url": "https://api.github.com/users/jlengrand/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/jlengrand/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"node_id": "MDc6UmVsZWFzZTQ0NDYwMTYy",
|
||||
"tag_name": "testCreateSimpleRelease",
|
||||
"target_commitish": "main",
|
||||
"name": null,
|
||||
"draft": false,
|
||||
"prerelease": false,
|
||||
"created_at": "2021-06-02T21:59:14Z",
|
||||
"published_at": "2021-06-11T06:56:52Z",
|
||||
"assets": [],
|
||||
"tarball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tarball/testCreateSimpleRelease",
|
||||
"zipball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/zipball/testCreateSimpleRelease",
|
||||
"body": null,
|
||||
"discussion_url": "https://github.com/hub4j-test-org/testCreateRelease/discussions/6"
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44460162",
|
||||
"assets_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44460162/assets",
|
||||
"upload_url": "https://uploads.github.com/repos/hub4j-test-org/testCreateRelease/releases/44460162/assets{?name,label}",
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease/releases/tag/testCreateSimpleRelease",
|
||||
"id": 44460162,
|
||||
"author": {
|
||||
"login": "jlengrand",
|
||||
"id": 921666,
|
||||
"node_id": "MDQ6VXNlcjkyMTY2Ng==",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/921666?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/jlengrand",
|
||||
"html_url": "https://github.com/jlengrand",
|
||||
"followers_url": "https://api.github.com/users/jlengrand/followers",
|
||||
"following_url": "https://api.github.com/users/jlengrand/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/jlengrand/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/jlengrand/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/jlengrand/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/jlengrand/orgs",
|
||||
"repos_url": "https://api.github.com/users/jlengrand/repos",
|
||||
"events_url": "https://api.github.com/users/jlengrand/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/jlengrand/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"node_id": "MDc6UmVsZWFzZTQ0NDYwMTYy",
|
||||
"tag_name": "testCreateSimpleRelease",
|
||||
"target_commitish": "main",
|
||||
"name": null,
|
||||
"draft": false,
|
||||
"prerelease": false,
|
||||
"created_at": "2021-06-02T21:59:14Z",
|
||||
"published_at": "2021-06-11T06:56:52Z",
|
||||
"assets": [],
|
||||
"tarball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tarball/testCreateSimpleRelease",
|
||||
"zipball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/zipball/testCreateSimpleRelease",
|
||||
"body": null,
|
||||
"discussion_url": "https://github.com/hub4j-test-org/testCreateRelease/discussions/6"
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"id": "9662df75-a233-4594-b75e-062a2f61f0b4",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "repos_hub4j-test-org_testcreaterelease-1.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 06:56:51 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"ef9d3ab50cfe0ffaaf23afcd5bf34b497f69be8ea9cdf2e52817c11ebc845494\"",
|
||||
"Last-Modified": "Thu, 10 Jun 2021 01:31:14 GMT",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4999",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "1",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E62F:E96C:32AE84C:33F7832:60C30933"
|
||||
}
|
||||
},
|
||||
"uuid": "9662df75-a233-4594-b75e-062a2f61f0b4",
|
||||
"persistent": true,
|
||||
"insertionIndex": 1
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
{
|
||||
"id": "2e081774-790c-4d7b-9f4b-71bad948a411",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases",
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
},
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"discussion_category_name\":\"announcements\",\"tag_name\":\"testCreateSimpleRelease\",\"prerelease\":false}",
|
||||
"ignoreArrayOrder": true,
|
||||
"ignoreExtraElements": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"response": {
|
||||
"status": 201,
|
||||
"bodyFileName": "repos_hub4j-test-org_testcreaterelease_releases-2.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 06:56:52 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "\"c0ff7f2f2ceb987472055c911610b16469c63e1928f209d5f58045a6e1cf861c\"",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4998",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "2",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E630:CE80:ED7A93:F2C7E4:60C30933",
|
||||
"Location": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44460162"
|
||||
}
|
||||
},
|
||||
"uuid": "2e081774-790c-4d7b-9f4b-71bad948a411",
|
||||
"persistent": true,
|
||||
"insertionIndex": 2
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"id": "16bc45b2-4a87-46f2-977d-d0cbe7bf10ba",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases_44460162",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases/44460162",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "repos_hub4j-test-org_testcreaterelease_releases_44460162-3.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 06:56:52 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"c0ff7f2f2ceb987472055c911610b16469c63e1928f209d5f58045a6e1cf861c\"",
|
||||
"Last-Modified": "Fri, 11 Jun 2021 06:56:52 GMT",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4997",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "3",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E631:E96A:C62EC6:D5D381:60C30934"
|
||||
}
|
||||
},
|
||||
"uuid": "16bc45b2-4a87-46f2-977d-d0cbe7bf10ba",
|
||||
"persistent": true,
|
||||
"scenarioName": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44460162",
|
||||
"requiredScenarioState": "Started",
|
||||
"newScenarioState": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44460162-2",
|
||||
"insertionIndex": 3
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"id": "083fedc2-a431-4eb7-bfde-5015864d6a4b",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases_44460162",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases/44460162",
|
||||
"method": "DELETE",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 204,
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 06:56:53 GMT",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4996",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "4",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"Vary": "Accept-Encoding, Accept, X-Requested-With",
|
||||
"X-GitHub-Request-Id": "E632:E6B9:F3DDE8:F93B50:60C30934"
|
||||
}
|
||||
},
|
||||
"uuid": "083fedc2-a431-4eb7-bfde-5015864d6a4b",
|
||||
"persistent": true,
|
||||
"insertionIndex": 4
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"id": "c421435f-0901-45f3-9ca4-6d9a3d46bf6c",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases_44460162",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases/44460162",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 404,
|
||||
"body": "{\"message\":\"Not Found\",\"documentation_url\":\"https://docs.github.com/rest/reference/repos#get-a-release\"}",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 06:56:53 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4995",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "5",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"Vary": "Accept-Encoding, Accept, X-Requested-With",
|
||||
"X-GitHub-Request-Id": "E633:E150:F261A6:F7C867:60C30935"
|
||||
}
|
||||
},
|
||||
"uuid": "c421435f-0901-45f3-9ca4-6d9a3d46bf6c",
|
||||
"persistent": true,
|
||||
"scenarioName": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44460162",
|
||||
"requiredScenarioState": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44460162-2",
|
||||
"insertionIndex": 5
|
||||
}
|
||||
@@ -0,0 +1,132 @@
|
||||
{
|
||||
"id": 375534019,
|
||||
"node_id": "MDEwOlJlcG9zaXRvcnkzNzU1MzQwMTk=",
|
||||
"name": "testCreateRelease",
|
||||
"full_name": "hub4j-test-org/testCreateRelease",
|
||||
"private": false,
|
||||
"owner": {
|
||||
"login": "hub4j-test-org",
|
||||
"id": 7544739,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/hub4j-test-org",
|
||||
"html_url": "https://github.com/hub4j-test-org",
|
||||
"followers_url": "https://api.github.com/users/hub4j-test-org/followers",
|
||||
"following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/hub4j-test-org/orgs",
|
||||
"repos_url": "https://api.github.com/users/hub4j-test-org/repos",
|
||||
"events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/hub4j-test-org/received_events",
|
||||
"type": "Organization",
|
||||
"site_admin": false
|
||||
},
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease",
|
||||
"description": null,
|
||||
"fork": false,
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease",
|
||||
"forks_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/forks",
|
||||
"keys_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/keys{/key_id}",
|
||||
"collaborators_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/collaborators{/collaborator}",
|
||||
"teams_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/teams",
|
||||
"hooks_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/hooks",
|
||||
"issue_events_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/issues/events{/number}",
|
||||
"events_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/events",
|
||||
"assignees_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/assignees{/user}",
|
||||
"branches_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/branches{/branch}",
|
||||
"tags_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tags",
|
||||
"blobs_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/blobs{/sha}",
|
||||
"git_tags_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/tags{/sha}",
|
||||
"git_refs_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/refs{/sha}",
|
||||
"trees_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/trees{/sha}",
|
||||
"statuses_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/statuses/{sha}",
|
||||
"languages_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/languages",
|
||||
"stargazers_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/stargazers",
|
||||
"contributors_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/contributors",
|
||||
"subscribers_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/subscribers",
|
||||
"subscription_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/subscription",
|
||||
"commits_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/commits{/sha}",
|
||||
"git_commits_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/commits{/sha}",
|
||||
"comments_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/comments{/number}",
|
||||
"issue_comment_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/issues/comments{/number}",
|
||||
"contents_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/contents/{+path}",
|
||||
"compare_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/compare/{base}...{head}",
|
||||
"merges_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/merges",
|
||||
"archive_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/{archive_format}{/ref}",
|
||||
"downloads_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/downloads",
|
||||
"issues_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/issues{/number}",
|
||||
"pulls_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/pulls{/number}",
|
||||
"milestones_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/milestones{/number}",
|
||||
"notifications_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/notifications{?since,all,participating}",
|
||||
"labels_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/labels{/name}",
|
||||
"releases_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases{/id}",
|
||||
"deployments_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/deployments",
|
||||
"created_at": "2021-06-10T01:25:59Z",
|
||||
"updated_at": "2021-06-10T01:31:14Z",
|
||||
"pushed_at": "2021-06-11T07:27:08Z",
|
||||
"git_url": "git://github.com/hub4j-test-org/testCreateRelease.git",
|
||||
"ssh_url": "git@github.com:hub4j-test-org/testCreateRelease.git",
|
||||
"clone_url": "https://github.com/hub4j-test-org/testCreateRelease.git",
|
||||
"svn_url": "https://github.com/hub4j-test-org/testCreateRelease",
|
||||
"homepage": null,
|
||||
"size": 11948,
|
||||
"stargazers_count": 0,
|
||||
"watchers_count": 0,
|
||||
"language": "Java",
|
||||
"has_issues": false,
|
||||
"has_projects": false,
|
||||
"has_downloads": true,
|
||||
"has_wiki": false,
|
||||
"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": "main",
|
||||
"permissions": {
|
||||
"admin": true,
|
||||
"push": true,
|
||||
"pull": true
|
||||
},
|
||||
"temp_clone_token": "",
|
||||
"allow_squash_merge": true,
|
||||
"allow_merge_commit": true,
|
||||
"allow_rebase_merge": true,
|
||||
"delete_branch_on_merge": false,
|
||||
"organization": {
|
||||
"login": "hub4j-test-org",
|
||||
"id": 7544739,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/hub4j-test-org",
|
||||
"html_url": "https://github.com/hub4j-test-org",
|
||||
"followers_url": "https://api.github.com/users/hub4j-test-org/followers",
|
||||
"following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/hub4j-test-org/orgs",
|
||||
"repos_url": "https://api.github.com/users/hub4j-test-org/repos",
|
||||
"events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/hub4j-test-org/received_events",
|
||||
"type": "Organization",
|
||||
"site_admin": false
|
||||
},
|
||||
"network_count": 0,
|
||||
"subscribers_count": 11
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461990",
|
||||
"assets_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461990/assets",
|
||||
"upload_url": "https://uploads.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461990/assets{?name,label}",
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease/releases/tag/testCreateSimpleReleaseWithoutDiscussion",
|
||||
"id": 44461990,
|
||||
"author": {
|
||||
"login": "jlengrand",
|
||||
"id": 921666,
|
||||
"node_id": "MDQ6VXNlcjkyMTY2Ng==",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/921666?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/jlengrand",
|
||||
"html_url": "https://github.com/jlengrand",
|
||||
"followers_url": "https://api.github.com/users/jlengrand/followers",
|
||||
"following_url": "https://api.github.com/users/jlengrand/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/jlengrand/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/jlengrand/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/jlengrand/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/jlengrand/orgs",
|
||||
"repos_url": "https://api.github.com/users/jlengrand/repos",
|
||||
"events_url": "https://api.github.com/users/jlengrand/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/jlengrand/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"node_id": "MDc6UmVsZWFzZTQ0NDYxOTkw",
|
||||
"tag_name": "testCreateSimpleReleaseWithoutDiscussion",
|
||||
"target_commitish": "main",
|
||||
"name": null,
|
||||
"draft": false,
|
||||
"prerelease": false,
|
||||
"created_at": "2021-06-02T21:59:14Z",
|
||||
"published_at": "2021-06-11T07:37:21Z",
|
||||
"assets": [],
|
||||
"tarball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tarball/testCreateSimpleReleaseWithoutDiscussion",
|
||||
"zipball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/zipball/testCreateSimpleReleaseWithoutDiscussion",
|
||||
"body": null
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461990",
|
||||
"assets_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461990/assets",
|
||||
"upload_url": "https://uploads.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461990/assets{?name,label}",
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease/releases/tag/testCreateSimpleReleaseWithoutDiscussion",
|
||||
"id": 44461990,
|
||||
"author": {
|
||||
"login": "jlengrand",
|
||||
"id": 921666,
|
||||
"node_id": "MDQ6VXNlcjkyMTY2Ng==",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/921666?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/jlengrand",
|
||||
"html_url": "https://github.com/jlengrand",
|
||||
"followers_url": "https://api.github.com/users/jlengrand/followers",
|
||||
"following_url": "https://api.github.com/users/jlengrand/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/jlengrand/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/jlengrand/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/jlengrand/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/jlengrand/orgs",
|
||||
"repos_url": "https://api.github.com/users/jlengrand/repos",
|
||||
"events_url": "https://api.github.com/users/jlengrand/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/jlengrand/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"node_id": "MDc6UmVsZWFzZTQ0NDYxOTkw",
|
||||
"tag_name": "testCreateSimpleReleaseWithoutDiscussion",
|
||||
"target_commitish": "main",
|
||||
"name": null,
|
||||
"draft": false,
|
||||
"prerelease": false,
|
||||
"created_at": "2021-06-02T21:59:14Z",
|
||||
"published_at": "2021-06-11T07:37:21Z",
|
||||
"assets": [],
|
||||
"tarball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tarball/testCreateSimpleReleaseWithoutDiscussion",
|
||||
"zipball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/zipball/testCreateSimpleReleaseWithoutDiscussion",
|
||||
"body": null
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"id": "240c3a66-3d99-4680-a2f3-00a2aba50e5c",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "repos_hub4j-test-org_testcreaterelease-1.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:37:20 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"96e9005e316e19408edfca389deda99227627a75be128d2fdc1f50ea6da7c724\"",
|
||||
"Last-Modified": "Thu, 10 Jun 2021 01:31:14 GMT",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4976",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "24",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E8DA:3159:541694F:55A2A3A:60C312B0"
|
||||
}
|
||||
},
|
||||
"uuid": "240c3a66-3d99-4680-a2f3-00a2aba50e5c",
|
||||
"persistent": true,
|
||||
"insertionIndex": 1
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
{
|
||||
"id": "4e5d1f80-2380-4cdf-b755-e65014fb824b",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases",
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
},
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"tag_name\":\"testCreateSimpleReleaseWithoutDiscussion\"}",
|
||||
"ignoreArrayOrder": true,
|
||||
"ignoreExtraElements": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"response": {
|
||||
"status": 201,
|
||||
"bodyFileName": "repos_hub4j-test-org_testcreaterelease_releases-2.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:37:21 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "\"e5ee7e1e758625a3955cc7b20503ae1b3195a7ffa307bc14e1924397f90bf496\"",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4975",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "25",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E8DB:A4AC:4EA03EB:5024B6F:60C312B0",
|
||||
"Location": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461990"
|
||||
}
|
||||
},
|
||||
"uuid": "4e5d1f80-2380-4cdf-b755-e65014fb824b",
|
||||
"persistent": true,
|
||||
"insertionIndex": 2
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"id": "fa44af19-86ba-44b2-94df-bf1b9c552ab6",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases_44461990",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases/44461990",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "repos_hub4j-test-org_testcreaterelease_releases_44461990-3.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:37:21 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"e5ee7e1e758625a3955cc7b20503ae1b3195a7ffa307bc14e1924397f90bf496\"",
|
||||
"Last-Modified": "Fri, 11 Jun 2021 07:37:21 GMT",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4974",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "26",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E8DC:9FD7:DD277A:E22BC9:60C312B1"
|
||||
}
|
||||
},
|
||||
"uuid": "fa44af19-86ba-44b2-94df-bf1b9c552ab6",
|
||||
"persistent": true,
|
||||
"scenarioName": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44461990",
|
||||
"requiredScenarioState": "Started",
|
||||
"newScenarioState": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44461990-2",
|
||||
"insertionIndex": 3
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"id": "19536fd9-783b-4649-8cc6-49da34dea396",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases_44461990",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases/44461990",
|
||||
"method": "DELETE",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 204,
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:37:21 GMT",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4973",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "27",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"Vary": "Accept-Encoding, Accept, X-Requested-With",
|
||||
"X-GitHub-Request-Id": "E8DD:621F:FBDB17:1015EB2:60C312B1"
|
||||
}
|
||||
},
|
||||
"uuid": "19536fd9-783b-4649-8cc6-49da34dea396",
|
||||
"persistent": true,
|
||||
"insertionIndex": 4
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"id": "00c80a21-f670-42cf-8b4d-c6f328f35bfb",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases_44461990",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases/44461990",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 404,
|
||||
"body": "{\"message\":\"Not Found\",\"documentation_url\":\"https://docs.github.com/rest/reference/repos#get-a-release\"}",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:37:22 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4972",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "28",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"Vary": "Accept-Encoding, Accept, X-Requested-With",
|
||||
"X-GitHub-Request-Id": "E8DE:621F:FBDB92:1015F36:60C312B2"
|
||||
}
|
||||
},
|
||||
"uuid": "00c80a21-f670-42cf-8b4d-c6f328f35bfb",
|
||||
"persistent": true,
|
||||
"scenarioName": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44461990",
|
||||
"requiredScenarioState": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44461990-2",
|
||||
"insertionIndex": 5
|
||||
}
|
||||
@@ -0,0 +1,132 @@
|
||||
{
|
||||
"id": 375534019,
|
||||
"node_id": "MDEwOlJlcG9zaXRvcnkzNzU1MzQwMTk=",
|
||||
"name": "testCreateRelease",
|
||||
"full_name": "hub4j-test-org/testCreateRelease",
|
||||
"private": false,
|
||||
"owner": {
|
||||
"login": "hub4j-test-org",
|
||||
"id": 7544739,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/hub4j-test-org",
|
||||
"html_url": "https://github.com/hub4j-test-org",
|
||||
"followers_url": "https://api.github.com/users/hub4j-test-org/followers",
|
||||
"following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/hub4j-test-org/orgs",
|
||||
"repos_url": "https://api.github.com/users/hub4j-test-org/repos",
|
||||
"events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/hub4j-test-org/received_events",
|
||||
"type": "Organization",
|
||||
"site_admin": false
|
||||
},
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease",
|
||||
"description": null,
|
||||
"fork": false,
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease",
|
||||
"forks_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/forks",
|
||||
"keys_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/keys{/key_id}",
|
||||
"collaborators_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/collaborators{/collaborator}",
|
||||
"teams_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/teams",
|
||||
"hooks_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/hooks",
|
||||
"issue_events_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/issues/events{/number}",
|
||||
"events_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/events",
|
||||
"assignees_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/assignees{/user}",
|
||||
"branches_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/branches{/branch}",
|
||||
"tags_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tags",
|
||||
"blobs_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/blobs{/sha}",
|
||||
"git_tags_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/tags{/sha}",
|
||||
"git_refs_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/refs{/sha}",
|
||||
"trees_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/trees{/sha}",
|
||||
"statuses_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/statuses/{sha}",
|
||||
"languages_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/languages",
|
||||
"stargazers_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/stargazers",
|
||||
"contributors_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/contributors",
|
||||
"subscribers_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/subscribers",
|
||||
"subscription_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/subscription",
|
||||
"commits_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/commits{/sha}",
|
||||
"git_commits_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/commits{/sha}",
|
||||
"comments_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/comments{/number}",
|
||||
"issue_comment_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/issues/comments{/number}",
|
||||
"contents_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/contents/{+path}",
|
||||
"compare_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/compare/{base}...{head}",
|
||||
"merges_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/merges",
|
||||
"archive_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/{archive_format}{/ref}",
|
||||
"downloads_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/downloads",
|
||||
"issues_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/issues{/number}",
|
||||
"pulls_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/pulls{/number}",
|
||||
"milestones_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/milestones{/number}",
|
||||
"notifications_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/notifications{?since,all,participating}",
|
||||
"labels_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/labels{/name}",
|
||||
"releases_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases{/id}",
|
||||
"deployments_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/deployments",
|
||||
"created_at": "2021-06-10T01:25:59Z",
|
||||
"updated_at": "2021-06-10T01:31:14Z",
|
||||
"pushed_at": "2021-06-11T07:24:06Z",
|
||||
"git_url": "git://github.com/hub4j-test-org/testCreateRelease.git",
|
||||
"ssh_url": "git@github.com:hub4j-test-org/testCreateRelease.git",
|
||||
"clone_url": "https://github.com/hub4j-test-org/testCreateRelease.git",
|
||||
"svn_url": "https://github.com/hub4j-test-org/testCreateRelease",
|
||||
"homepage": null,
|
||||
"size": 11948,
|
||||
"stargazers_count": 0,
|
||||
"watchers_count": 0,
|
||||
"language": "Java",
|
||||
"has_issues": false,
|
||||
"has_projects": false,
|
||||
"has_downloads": true,
|
||||
"has_wiki": false,
|
||||
"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": "main",
|
||||
"permissions": {
|
||||
"admin": true,
|
||||
"push": true,
|
||||
"pull": true
|
||||
},
|
||||
"temp_clone_token": "",
|
||||
"allow_squash_merge": true,
|
||||
"allow_merge_commit": true,
|
||||
"allow_rebase_merge": true,
|
||||
"delete_branch_on_merge": false,
|
||||
"organization": {
|
||||
"login": "hub4j-test-org",
|
||||
"id": 7544739,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/hub4j-test-org",
|
||||
"html_url": "https://github.com/hub4j-test-org",
|
||||
"followers_url": "https://api.github.com/users/hub4j-test-org/followers",
|
||||
"following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/hub4j-test-org/orgs",
|
||||
"repos_url": "https://api.github.com/users/hub4j-test-org/repos",
|
||||
"events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/hub4j-test-org/received_events",
|
||||
"type": "Organization",
|
||||
"site_admin": false
|
||||
},
|
||||
"network_count": 0,
|
||||
"subscribers_count": 11
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461507",
|
||||
"assets_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461507/assets",
|
||||
"upload_url": "https://uploads.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461507/assets{?name,label}",
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease/releases/tag/testDeleteRelease",
|
||||
"id": 44461507,
|
||||
"author": {
|
||||
"login": "jlengrand",
|
||||
"id": 921666,
|
||||
"node_id": "MDQ6VXNlcjkyMTY2Ng==",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/921666?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/jlengrand",
|
||||
"html_url": "https://github.com/jlengrand",
|
||||
"followers_url": "https://api.github.com/users/jlengrand/followers",
|
||||
"following_url": "https://api.github.com/users/jlengrand/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/jlengrand/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/jlengrand/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/jlengrand/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/jlengrand/orgs",
|
||||
"repos_url": "https://api.github.com/users/jlengrand/repos",
|
||||
"events_url": "https://api.github.com/users/jlengrand/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/jlengrand/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"node_id": "MDc6UmVsZWFzZTQ0NDYxNTA3",
|
||||
"tag_name": "testDeleteRelease",
|
||||
"target_commitish": "main",
|
||||
"name": null,
|
||||
"draft": false,
|
||||
"prerelease": true,
|
||||
"created_at": "2021-06-02T21:59:14Z",
|
||||
"published_at": "2021-06-11T07:27:08Z",
|
||||
"assets": [],
|
||||
"tarball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tarball/testDeleteRelease",
|
||||
"zipball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/zipball/testDeleteRelease",
|
||||
"body": null,
|
||||
"discussion_url": "https://github.com/hub4j-test-org/testCreateRelease/discussions/8"
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461507",
|
||||
"assets_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461507/assets",
|
||||
"upload_url": "https://uploads.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461507/assets{?name,label}",
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease/releases/tag/testDeleteRelease",
|
||||
"id": 44461507,
|
||||
"author": {
|
||||
"login": "jlengrand",
|
||||
"id": 921666,
|
||||
"node_id": "MDQ6VXNlcjkyMTY2Ng==",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/921666?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/jlengrand",
|
||||
"html_url": "https://github.com/jlengrand",
|
||||
"followers_url": "https://api.github.com/users/jlengrand/followers",
|
||||
"following_url": "https://api.github.com/users/jlengrand/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/jlengrand/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/jlengrand/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/jlengrand/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/jlengrand/orgs",
|
||||
"repos_url": "https://api.github.com/users/jlengrand/repos",
|
||||
"events_url": "https://api.github.com/users/jlengrand/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/jlengrand/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"node_id": "MDc6UmVsZWFzZTQ0NDYxNTA3",
|
||||
"tag_name": "testDeleteRelease",
|
||||
"target_commitish": "main",
|
||||
"name": null,
|
||||
"draft": false,
|
||||
"prerelease": true,
|
||||
"created_at": "2021-06-02T21:59:14Z",
|
||||
"published_at": "2021-06-11T07:27:08Z",
|
||||
"assets": [],
|
||||
"tarball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tarball/testDeleteRelease",
|
||||
"zipball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/zipball/testDeleteRelease",
|
||||
"body": null,
|
||||
"discussion_url": "https://github.com/hub4j-test-org/testCreateRelease/discussions/8"
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"id": "2eb18e92-b854-4f1d-948b-36caa997391e",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "repos_hub4j-test-org_testcreaterelease-1.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:27:07 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"99ad972013471e42a66ddcd2f8eb81ac2776029a819ed4aa46faeee3491b138b\"",
|
||||
"Last-Modified": "Thu, 10 Jun 2021 01:31:14 GMT",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4981",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "19",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E801:A4AB:36459CA:3791B19:60C3104B"
|
||||
}
|
||||
},
|
||||
"uuid": "2eb18e92-b854-4f1d-948b-36caa997391e",
|
||||
"persistent": true,
|
||||
"insertionIndex": 1
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
{
|
||||
"id": "22cedbc5-545e-4817-bbe2-0d118adc586d",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases",
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
},
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"discussion_category_name\":\"announcements\",\"tag_name\":\"testDeleteRelease\",\"prerelease\":true}",
|
||||
"ignoreArrayOrder": true,
|
||||
"ignoreExtraElements": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"response": {
|
||||
"status": 201,
|
||||
"bodyFileName": "repos_hub4j-test-org_testcreaterelease_releases-2.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:27:09 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "\"020c1346082d98665456692bf4cf51ba9e1b800d7edee53c75411976a781395d\"",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4980",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "20",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E802:6388:8DAC69:923B7C:60C3104C",
|
||||
"Location": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461507"
|
||||
}
|
||||
},
|
||||
"uuid": "22cedbc5-545e-4817-bbe2-0d118adc586d",
|
||||
"persistent": true,
|
||||
"insertionIndex": 2
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"id": "62c439cc-b7b2-466d-a8f0-868f72560611",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases_44461507",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases/44461507",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "repos_hub4j-test-org_testcreaterelease_releases_44461507-3.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:27:09 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"020c1346082d98665456692bf4cf51ba9e1b800d7edee53c75411976a781395d\"",
|
||||
"Last-Modified": "Fri, 11 Jun 2021 07:27:08 GMT",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4979",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "21",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E804:102B3:8396C3:881D95:60C3104D"
|
||||
}
|
||||
},
|
||||
"uuid": "62c439cc-b7b2-466d-a8f0-868f72560611",
|
||||
"persistent": true,
|
||||
"scenarioName": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44461507",
|
||||
"requiredScenarioState": "Started",
|
||||
"newScenarioState": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44461507-2",
|
||||
"insertionIndex": 3
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"id": "ec846669-9193-49ad-81b2-c23fb5366ce7",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases_44461507",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases/44461507",
|
||||
"method": "DELETE",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 204,
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:27:09 GMT",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4978",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "22",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"Vary": "Accept-Encoding, Accept, X-Requested-With",
|
||||
"X-GitHub-Request-Id": "E805:621E:8DD723:926AB1:60C3104D"
|
||||
}
|
||||
},
|
||||
"uuid": "ec846669-9193-49ad-81b2-c23fb5366ce7",
|
||||
"persistent": true,
|
||||
"insertionIndex": 4
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"id": "5516b270-3cd2-4fc8-baef-adbbdf797949",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases_44461507",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases/44461507",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 404,
|
||||
"body": "{\"message\":\"Not Found\",\"documentation_url\":\"https://docs.github.com/rest/reference/repos#get-a-release\"}",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:27:09 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4977",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "23",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"Vary": "Accept-Encoding, Accept, X-Requested-With",
|
||||
"X-GitHub-Request-Id": "E806:CE7F:88BFEB:8D4AD5:60C3104D"
|
||||
}
|
||||
},
|
||||
"uuid": "5516b270-3cd2-4fc8-baef-adbbdf797949",
|
||||
"persistent": true,
|
||||
"scenarioName": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44461507",
|
||||
"requiredScenarioState": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44461507-2",
|
||||
"insertionIndex": 5
|
||||
}
|
||||
@@ -0,0 +1,132 @@
|
||||
{
|
||||
"id": 375534019,
|
||||
"node_id": "MDEwOlJlcG9zaXRvcnkzNzU1MzQwMTk=",
|
||||
"name": "testCreateRelease",
|
||||
"full_name": "hub4j-test-org/testCreateRelease",
|
||||
"private": false,
|
||||
"owner": {
|
||||
"login": "hub4j-test-org",
|
||||
"id": 7544739,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/hub4j-test-org",
|
||||
"html_url": "https://github.com/hub4j-test-org",
|
||||
"followers_url": "https://api.github.com/users/hub4j-test-org/followers",
|
||||
"following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/hub4j-test-org/orgs",
|
||||
"repos_url": "https://api.github.com/users/hub4j-test-org/repos",
|
||||
"events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/hub4j-test-org/received_events",
|
||||
"type": "Organization",
|
||||
"site_admin": false
|
||||
},
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease",
|
||||
"description": null,
|
||||
"fork": false,
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease",
|
||||
"forks_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/forks",
|
||||
"keys_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/keys{/key_id}",
|
||||
"collaborators_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/collaborators{/collaborator}",
|
||||
"teams_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/teams",
|
||||
"hooks_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/hooks",
|
||||
"issue_events_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/issues/events{/number}",
|
||||
"events_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/events",
|
||||
"assignees_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/assignees{/user}",
|
||||
"branches_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/branches{/branch}",
|
||||
"tags_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tags",
|
||||
"blobs_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/blobs{/sha}",
|
||||
"git_tags_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/tags{/sha}",
|
||||
"git_refs_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/refs{/sha}",
|
||||
"trees_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/trees{/sha}",
|
||||
"statuses_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/statuses/{sha}",
|
||||
"languages_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/languages",
|
||||
"stargazers_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/stargazers",
|
||||
"contributors_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/contributors",
|
||||
"subscribers_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/subscribers",
|
||||
"subscription_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/subscription",
|
||||
"commits_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/commits{/sha}",
|
||||
"git_commits_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/commits{/sha}",
|
||||
"comments_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/comments{/number}",
|
||||
"issue_comment_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/issues/comments{/number}",
|
||||
"contents_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/contents/{+path}",
|
||||
"compare_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/compare/{base}...{head}",
|
||||
"merges_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/merges",
|
||||
"archive_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/{archive_format}{/ref}",
|
||||
"downloads_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/downloads",
|
||||
"issues_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/issues{/number}",
|
||||
"pulls_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/pulls{/number}",
|
||||
"milestones_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/milestones{/number}",
|
||||
"notifications_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/notifications{?since,all,participating}",
|
||||
"labels_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/labels{/name}",
|
||||
"releases_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases{/id}",
|
||||
"deployments_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/deployments",
|
||||
"created_at": "2021-06-10T01:25:59Z",
|
||||
"updated_at": "2021-06-10T01:31:14Z",
|
||||
"pushed_at": "2021-06-11T07:05:00Z",
|
||||
"git_url": "git://github.com/hub4j-test-org/testCreateRelease.git",
|
||||
"ssh_url": "git@github.com:hub4j-test-org/testCreateRelease.git",
|
||||
"clone_url": "https://github.com/hub4j-test-org/testCreateRelease.git",
|
||||
"svn_url": "https://github.com/hub4j-test-org/testCreateRelease",
|
||||
"homepage": null,
|
||||
"size": 11948,
|
||||
"stargazers_count": 0,
|
||||
"watchers_count": 0,
|
||||
"language": "Java",
|
||||
"has_issues": false,
|
||||
"has_projects": false,
|
||||
"has_downloads": true,
|
||||
"has_wiki": false,
|
||||
"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": "main",
|
||||
"permissions": {
|
||||
"admin": true,
|
||||
"push": true,
|
||||
"pull": true
|
||||
},
|
||||
"temp_clone_token": "",
|
||||
"allow_squash_merge": true,
|
||||
"allow_merge_commit": true,
|
||||
"allow_rebase_merge": true,
|
||||
"delete_branch_on_merge": false,
|
||||
"organization": {
|
||||
"login": "hub4j-test-org",
|
||||
"id": 7544739,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/hub4j-test-org",
|
||||
"html_url": "https://github.com/hub4j-test-org",
|
||||
"followers_url": "https://api.github.com/users/hub4j-test-org/followers",
|
||||
"following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/hub4j-test-org/orgs",
|
||||
"repos_url": "https://api.github.com/users/hub4j-test-org/repos",
|
||||
"events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/hub4j-test-org/received_events",
|
||||
"type": "Organization",
|
||||
"site_admin": false
|
||||
},
|
||||
"network_count": 0,
|
||||
"subscribers_count": 11
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461376",
|
||||
"assets_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461376/assets",
|
||||
"upload_url": "https://uploads.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461376/assets{?name,label}",
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease/releases/tag/testUpdateRelease",
|
||||
"id": 44461376,
|
||||
"author": {
|
||||
"login": "jlengrand",
|
||||
"id": 921666,
|
||||
"node_id": "MDQ6VXNlcjkyMTY2Ng==",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/921666?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/jlengrand",
|
||||
"html_url": "https://github.com/jlengrand",
|
||||
"followers_url": "https://api.github.com/users/jlengrand/followers",
|
||||
"following_url": "https://api.github.com/users/jlengrand/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/jlengrand/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/jlengrand/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/jlengrand/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/jlengrand/orgs",
|
||||
"repos_url": "https://api.github.com/users/jlengrand/repos",
|
||||
"events_url": "https://api.github.com/users/jlengrand/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/jlengrand/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"node_id": "MDc6UmVsZWFzZTQ0NDYxMzc2",
|
||||
"tag_name": "testUpdateRelease",
|
||||
"target_commitish": "main",
|
||||
"name": null,
|
||||
"draft": false,
|
||||
"prerelease": true,
|
||||
"created_at": "2021-06-02T21:59:14Z",
|
||||
"published_at": "2021-06-11T07:24:06Z",
|
||||
"assets": [],
|
||||
"tarball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tarball/testUpdateRelease",
|
||||
"zipball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/zipball/testUpdateRelease",
|
||||
"body": null,
|
||||
"discussion_url": "https://github.com/hub4j-test-org/testCreateRelease/discussions/7"
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44462156",
|
||||
"assets_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44462156/assets",
|
||||
"upload_url": "https://uploads.github.com/repos/hub4j-test-org/testCreateRelease/releases/44462156/assets{?name,label}",
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease/releases/tag/testUpdateRelease",
|
||||
"id": 44462156,
|
||||
"author": {
|
||||
"login": "jlengrand",
|
||||
"id": 921666,
|
||||
"node_id": "MDQ6VXNlcjkyMTY2Ng==",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/921666?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/jlengrand",
|
||||
"html_url": "https://github.com/jlengrand",
|
||||
"followers_url": "https://api.github.com/users/jlengrand/followers",
|
||||
"following_url": "https://api.github.com/users/jlengrand/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/jlengrand/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/jlengrand/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/jlengrand/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/jlengrand/orgs",
|
||||
"repos_url": "https://api.github.com/users/jlengrand/repos",
|
||||
"events_url": "https://api.github.com/users/jlengrand/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/jlengrand/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"node_id": "MDc6UmVsZWFzZTQ0NDYyMTU2",
|
||||
"tag_name": "testUpdateRelease",
|
||||
"target_commitish": "main",
|
||||
"name": null,
|
||||
"draft": false,
|
||||
"prerelease": true,
|
||||
"created_at": "2021-06-02T21:59:14Z",
|
||||
"published_at": "2021-06-11T07:40:46Z",
|
||||
"assets": [],
|
||||
"tarball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tarball/testUpdateRelease",
|
||||
"zipball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/zipball/testUpdateRelease",
|
||||
"body": null
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461376",
|
||||
"assets_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461376/assets",
|
||||
"upload_url": "https://uploads.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461376/assets{?name,label}",
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease/releases/tag/testUpdateRelease",
|
||||
"id": 44461376,
|
||||
"author": {
|
||||
"login": "jlengrand",
|
||||
"id": 921666,
|
||||
"node_id": "MDQ6VXNlcjkyMTY2Ng==",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/921666?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/jlengrand",
|
||||
"html_url": "https://github.com/jlengrand",
|
||||
"followers_url": "https://api.github.com/users/jlengrand/followers",
|
||||
"following_url": "https://api.github.com/users/jlengrand/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/jlengrand/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/jlengrand/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/jlengrand/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/jlengrand/orgs",
|
||||
"repos_url": "https://api.github.com/users/jlengrand/repos",
|
||||
"events_url": "https://api.github.com/users/jlengrand/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/jlengrand/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"node_id": "MDc6UmVsZWFzZTQ0NDYxMzc2",
|
||||
"tag_name": "testUpdateRelease",
|
||||
"target_commitish": "main",
|
||||
"name": null,
|
||||
"draft": false,
|
||||
"prerelease": true,
|
||||
"created_at": "2021-06-02T21:59:14Z",
|
||||
"published_at": "2021-06-11T07:24:06Z",
|
||||
"assets": [],
|
||||
"tarball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tarball/testUpdateRelease",
|
||||
"zipball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/zipball/testUpdateRelease",
|
||||
"body": null,
|
||||
"discussion_url": "https://github.com/hub4j-test-org/testCreateRelease/discussions/7"
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461376",
|
||||
"assets_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461376/assets",
|
||||
"upload_url": "https://uploads.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461376/assets{?name,label}",
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease/releases/tag/testUpdateRelease",
|
||||
"id": 44461376,
|
||||
"author": {
|
||||
"login": "jlengrand",
|
||||
"id": 921666,
|
||||
"node_id": "MDQ6VXNlcjkyMTY2Ng==",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/921666?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/jlengrand",
|
||||
"html_url": "https://github.com/jlengrand",
|
||||
"followers_url": "https://api.github.com/users/jlengrand/followers",
|
||||
"following_url": "https://api.github.com/users/jlengrand/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/jlengrand/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/jlengrand/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/jlengrand/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/jlengrand/orgs",
|
||||
"repos_url": "https://api.github.com/users/jlengrand/repos",
|
||||
"events_url": "https://api.github.com/users/jlengrand/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/jlengrand/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"node_id": "MDc6UmVsZWFzZTQ0NDYxMzc2",
|
||||
"tag_name": "testUpdateRelease",
|
||||
"target_commitish": "main",
|
||||
"name": null,
|
||||
"draft": false,
|
||||
"prerelease": false,
|
||||
"created_at": "2021-06-02T21:59:14Z",
|
||||
"published_at": "2021-06-11T07:24:06Z",
|
||||
"assets": [],
|
||||
"tarball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tarball/testUpdateRelease",
|
||||
"zipball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/zipball/testUpdateRelease",
|
||||
"body": null,
|
||||
"discussion_url": "https://github.com/hub4j-test-org/testCreateRelease/discussions/7"
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44462156",
|
||||
"assets_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44462156/assets",
|
||||
"upload_url": "https://uploads.github.com/repos/hub4j-test-org/testCreateRelease/releases/44462156/assets{?name,label}",
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease/releases/tag/testUpdateRelease",
|
||||
"id": 44462156,
|
||||
"author": {
|
||||
"login": "jlengrand",
|
||||
"id": 921666,
|
||||
"node_id": "MDQ6VXNlcjkyMTY2Ng==",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/921666?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/jlengrand",
|
||||
"html_url": "https://github.com/jlengrand",
|
||||
"followers_url": "https://api.github.com/users/jlengrand/followers",
|
||||
"following_url": "https://api.github.com/users/jlengrand/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/jlengrand/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/jlengrand/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/jlengrand/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/jlengrand/orgs",
|
||||
"repos_url": "https://api.github.com/users/jlengrand/repos",
|
||||
"events_url": "https://api.github.com/users/jlengrand/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/jlengrand/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"node_id": "MDc6UmVsZWFzZTQ0NDYyMTU2",
|
||||
"tag_name": "testUpdateRelease",
|
||||
"target_commitish": "main",
|
||||
"name": null,
|
||||
"draft": false,
|
||||
"prerelease": false,
|
||||
"created_at": "2021-06-02T21:59:14Z",
|
||||
"published_at": "2021-06-11T07:40:46Z",
|
||||
"assets": [],
|
||||
"tarball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tarball/testUpdateRelease",
|
||||
"zipball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/zipball/testUpdateRelease",
|
||||
"body": null,
|
||||
"discussion_url": "https://github.com/hub4j-test-org/testCreateRelease/discussions/9"
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44462156",
|
||||
"assets_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44462156/assets",
|
||||
"upload_url": "https://uploads.github.com/repos/hub4j-test-org/testCreateRelease/releases/44462156/assets{?name,label}",
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease/releases/tag/testUpdateRelease",
|
||||
"id": 44462156,
|
||||
"author": {
|
||||
"login": "jlengrand",
|
||||
"id": 921666,
|
||||
"node_id": "MDQ6VXNlcjkyMTY2Ng==",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/921666?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/jlengrand",
|
||||
"html_url": "https://github.com/jlengrand",
|
||||
"followers_url": "https://api.github.com/users/jlengrand/followers",
|
||||
"following_url": "https://api.github.com/users/jlengrand/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/jlengrand/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/jlengrand/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/jlengrand/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/jlengrand/orgs",
|
||||
"repos_url": "https://api.github.com/users/jlengrand/repos",
|
||||
"events_url": "https://api.github.com/users/jlengrand/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/jlengrand/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"node_id": "MDc6UmVsZWFzZTQ0NDYyMTU2",
|
||||
"tag_name": "testUpdateRelease",
|
||||
"target_commitish": "main",
|
||||
"name": null,
|
||||
"draft": false,
|
||||
"prerelease": true,
|
||||
"created_at": "2021-06-02T21:59:14Z",
|
||||
"published_at": "2021-06-11T07:40:46Z",
|
||||
"assets": [],
|
||||
"tarball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tarball/testUpdateRelease",
|
||||
"zipball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/zipball/testUpdateRelease",
|
||||
"body": null
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"id": "590a71df-b792-4357-a5b8-90a303c83525",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "repos_hub4j-test-org_testcreaterelease-1.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:24:05 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"23ae33f32f11ba6813bedc05d996f08e750f9632acc3ae901422a2d584f2cd0e\"",
|
||||
"Last-Modified": "Thu, 10 Jun 2021 01:31:14 GMT",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4988",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "12",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E7A0:9EE9:92D38F:A2858A:60C30F95"
|
||||
}
|
||||
},
|
||||
"uuid": "590a71df-b792-4357-a5b8-90a303c83525",
|
||||
"persistent": true,
|
||||
"insertionIndex": 1
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
{
|
||||
"id": "1af9b84f-75c6-46c0-a231-1b351737029a",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases",
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
},
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"discussion_category_name\":\"announcements\",\"tag_name\":\"testUpdateRelease\",\"prerelease\":true}",
|
||||
"ignoreArrayOrder": true,
|
||||
"ignoreExtraElements": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"response": {
|
||||
"status": 201,
|
||||
"bodyFileName": "repos_hub4j-test-org_testcreaterelease_releases-2.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:24:06 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "\"05c68c5d98cb9bd0b2482557e6308469f965c8fe689a516da1e37289201d6a86\"",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4987",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "13",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E7A1:4820:B159E:B5DCF:60C30F96",
|
||||
"Location": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44461376"
|
||||
}
|
||||
},
|
||||
"uuid": "1af9b84f-75c6-46c0-a231-1b351737029a",
|
||||
"persistent": true,
|
||||
"insertionIndex": 2
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
{
|
||||
"id": "4d0a9a58-d639-4fc0-a4fa-1708aa4d313b",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases",
|
||||
"method": "POST",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
},
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"tag_name\":\"testUpdateRelease\",\"prerelease\":true}",
|
||||
"ignoreArrayOrder": true,
|
||||
"ignoreExtraElements": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"response": {
|
||||
"status": 201,
|
||||
"bodyFileName": "repos_hub4j-test-org_testcreaterelease_releases-8.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:40:46 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "\"dc9cadee947cafef7160d828b82e531a7fe86acacf9670196bc93d44321601e4\"",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4971",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "29",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E902:4820:100B04:107060:60C3137E",
|
||||
"Location": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44462156"
|
||||
}
|
||||
},
|
||||
"uuid": "4d0a9a58-d639-4fc0-a4fa-1708aa4d313b",
|
||||
"persistent": true,
|
||||
"insertionIndex": 8
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"id": "123697c0-6c4c-4b19-bd15-e309e7bc779a",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases_44461376",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases/44461376",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "repos_hub4j-test-org_testcreaterelease_releases_44461376-3.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:24:07 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"05c68c5d98cb9bd0b2482557e6308469f965c8fe689a516da1e37289201d6a86\"",
|
||||
"Last-Modified": "Fri, 11 Jun 2021 07:24:06 GMT",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4986",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "14",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E7A2:102B3:82E510:876781:60C30F97"
|
||||
}
|
||||
},
|
||||
"uuid": "123697c0-6c4c-4b19-bd15-e309e7bc779a",
|
||||
"persistent": true,
|
||||
"scenarioName": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44461376",
|
||||
"requiredScenarioState": "Started",
|
||||
"newScenarioState": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44461376-2",
|
||||
"insertionIndex": 3
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"id": "4c60bd74-6531-4279-97bf-81db84a44f04",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases_44461376",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases/44461376",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
},
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"prerelease\":false}",
|
||||
"ignoreArrayOrder": true,
|
||||
"ignoreExtraElements": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "repos_hub4j-test-org_testcreaterelease_releases_44461376-4.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:24:07 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"fc8671e79791ab5293e66d1dd2e7126cfda4d9eccd7c7319679c2bede05e2be1\"",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4985",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "15",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E7A3:2A5F:87658F:8BEB7A:60C30F97"
|
||||
}
|
||||
},
|
||||
"uuid": "4c60bd74-6531-4279-97bf-81db84a44f04",
|
||||
"persistent": true,
|
||||
"insertionIndex": 4
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"id": "138f181b-ad71-45a3-9d2c-3fc80de92f86",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases_44461376",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases/44461376",
|
||||
"method": "DELETE",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 204,
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:24:08 GMT",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4984",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "16",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"Vary": "Accept-Encoding, Accept, X-Requested-With",
|
||||
"X-GitHub-Request-Id": "E7A7:2A5F:8765E0:8BEBC6:60C30F97"
|
||||
}
|
||||
},
|
||||
"uuid": "138f181b-ad71-45a3-9d2c-3fc80de92f86",
|
||||
"persistent": true,
|
||||
"insertionIndex": 5
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"id": "e1364d64-ddc3-488c-a17d-bb631c25e979",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases_44461376",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases/44461376",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 404,
|
||||
"body": "{\"message\":\"Not Found\",\"documentation_url\":\"https://docs.github.com/rest/reference/repos#get-a-release\"}",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:24:08 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4983",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "17",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"Vary": "Accept-Encoding, Accept, X-Requested-With",
|
||||
"X-GitHub-Request-Id": "E7AA:A57C:409422:47254B:60C30F98"
|
||||
}
|
||||
},
|
||||
"uuid": "e1364d64-ddc3-488c-a17d-bb631c25e979",
|
||||
"persistent": true,
|
||||
"scenarioName": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44461376",
|
||||
"requiredScenarioState": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44461376-2",
|
||||
"newScenarioState": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44461376-3",
|
||||
"insertionIndex": 6
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"id": "eb11f7fc-b22c-425c-9667-6ea7cfb5b090",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases_44461376",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases/44461376",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 404,
|
||||
"body": "{\"message\":\"Not Found\",\"documentation_url\":\"https://docs.github.com/rest/reference/repos#get-a-release\"}",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:24:08 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4982",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "18",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"Vary": "Accept-Encoding, Accept, X-Requested-With",
|
||||
"X-GitHub-Request-Id": "E7AB:A4AC:4E56E72:4FD9F1F:60C30F98"
|
||||
}
|
||||
},
|
||||
"uuid": "eb11f7fc-b22c-425c-9667-6ea7cfb5b090",
|
||||
"persistent": true,
|
||||
"scenarioName": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44461376",
|
||||
"requiredScenarioState": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44461376-3",
|
||||
"insertionIndex": 7
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
{
|
||||
"id": "72e74810-cfa0-4857-8e99-abab1dae7618",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases_44462156",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases/44462156",
|
||||
"method": "PATCH",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
},
|
||||
"bodyPatterns": [
|
||||
{
|
||||
"equalToJson": "{\"discussion_category_name\":\"announcements\",\"prerelease\":false}",
|
||||
"ignoreArrayOrder": true,
|
||||
"ignoreExtraElements": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "repos_hub4j-test-org_testcreaterelease_releases_44462156-10.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:40:47 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"f111842fcc85219300010dc1a1a6620706124c7ab67a81972e5a044c8612c257\"",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4969",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "31",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E904:E96D:56A5C4B:583354E:60C3137F"
|
||||
}
|
||||
},
|
||||
"uuid": "72e74810-cfa0-4857-8e99-abab1dae7618",
|
||||
"persistent": true,
|
||||
"insertionIndex": 10
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"id": "95c58a35-d941-416e-88d9-7bfaba44072d",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases_44462156",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases/44462156",
|
||||
"method": "DELETE",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 204,
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:40:47 GMT",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4968",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "32",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"Vary": "Accept-Encoding, Accept, X-Requested-With",
|
||||
"X-GitHub-Request-Id": "E905:CE80:FC865A:10220E3:60C3137F"
|
||||
}
|
||||
},
|
||||
"uuid": "95c58a35-d941-416e-88d9-7bfaba44072d",
|
||||
"persistent": true,
|
||||
"insertionIndex": 11
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"id": "6d70d400-09c0-4aa7-955e-6baa9b96b919",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases_44462156",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases/44462156",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 404,
|
||||
"body": "{\"message\":\"Not Found\",\"documentation_url\":\"https://docs.github.com/rest/reference/repos#get-a-release\"}",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:40:48 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4967",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "33",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"Vary": "Accept-Encoding, Accept, X-Requested-With",
|
||||
"X-GitHub-Request-Id": "E906:E6B9:1034D79:108FA3F:60C3137F"
|
||||
}
|
||||
},
|
||||
"uuid": "6d70d400-09c0-4aa7-955e-6baa9b96b919",
|
||||
"persistent": true,
|
||||
"scenarioName": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44462156",
|
||||
"requiredScenarioState": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44462156-2",
|
||||
"newScenarioState": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44462156-3",
|
||||
"insertionIndex": 12
|
||||
}
|
||||
@@ -0,0 +1,43 @@
|
||||
{
|
||||
"id": "d8229ea2-6b2a-4138-8141-96bfc33ecbd1",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases_44462156",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases/44462156",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 404,
|
||||
"body": "{\"message\":\"Not Found\",\"documentation_url\":\"https://docs.github.com/rest/reference/repos#get-a-release\"}",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:40:48 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4966",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "34",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"Vary": "Accept-Encoding, Accept, X-Requested-With",
|
||||
"X-GitHub-Request-Id": "E907:9EEB:3042575:318EAA2:60C31380"
|
||||
}
|
||||
},
|
||||
"uuid": "d8229ea2-6b2a-4138-8141-96bfc33ecbd1",
|
||||
"persistent": true,
|
||||
"scenarioName": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44462156",
|
||||
"requiredScenarioState": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44462156-3",
|
||||
"insertionIndex": 13
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"id": "14f1047f-5c7d-4262-a35d-3990df23b16b",
|
||||
"name": "repos_hub4j-test-org_testcreaterelease_releases_44462156",
|
||||
"request": {
|
||||
"url": "/repos/hub4j-test-org/testCreateRelease/releases/44462156",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "repos_hub4j-test-org_testcreaterelease_releases_44462156-9.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Fri, 11 Jun 2021 07:40:46 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"dc9cadee947cafef7160d828b82e531a7fe86acacf9670196bc93d44321601e4\"",
|
||||
"Last-Modified": "Fri, 11 Jun 2021 07:40:46 GMT",
|
||||
"X-OAuth-Scopes": "admin:enterprise, admin:gpg_key, admin:org, admin:org_hook, admin:public_key, admin:repo_hook, delete:packages, delete_repo, gist, notifications, repo, user, workflow, write:discussion, write:packages",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4970",
|
||||
"X-RateLimit-Reset": "1623398211",
|
||||
"X-RateLimit-Used": "30",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "E903:3159:542C272:55B894B:60C3137E"
|
||||
}
|
||||
},
|
||||
"uuid": "14f1047f-5c7d-4262-a35d-3990df23b16b",
|
||||
"persistent": true,
|
||||
"scenarioName": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44462156",
|
||||
"requiredScenarioState": "Started",
|
||||
"newScenarioState": "scenario-1-repos-hub4j-test-org-testCreateRelease-releases-44462156-2",
|
||||
"insertionIndex": 9
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"login": "t0m4uk1991",
|
||||
"id": 6698785,
|
||||
"node_id": "MDQ6VXNlcjY2OTg3ODU=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/6698785?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/t0m4uk1991",
|
||||
"html_url": "https://github.com/t0m4uk1991",
|
||||
"followers_url": "https://api.github.com/users/t0m4uk1991/followers",
|
||||
"following_url": "https://api.github.com/users/t0m4uk1991/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/t0m4uk1991/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/t0m4uk1991/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/t0m4uk1991/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/t0m4uk1991/orgs",
|
||||
"repos_url": "https://api.github.com/users/t0m4uk1991/repos",
|
||||
"events_url": "https://api.github.com/users/t0m4uk1991/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/t0m4uk1991/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false,
|
||||
"name": null,
|
||||
"company": null,
|
||||
"blog": "https://t0m4uk1991.github.io",
|
||||
"location": "Ukraine",
|
||||
"email": "t0m4uk1991@gmail.com",
|
||||
"hireable": true,
|
||||
"bio": null,
|
||||
"twitter_username": null,
|
||||
"public_repos": 14,
|
||||
"public_gists": 10,
|
||||
"followers": 2,
|
||||
"following": 2,
|
||||
"created_at": "2014-02-16T20:43:03Z",
|
||||
"updated_at": "2021-06-05T08:38:35Z",
|
||||
"private_gists": 2,
|
||||
"total_private_repos": 16,
|
||||
"owned_private_repos": 16,
|
||||
"disk_usage": 23717,
|
||||
"collaborators": 0,
|
||||
"two_factor_authentication": false,
|
||||
"plan": {
|
||||
"name": "free",
|
||||
"space": 976562499,
|
||||
"collaborators": 0,
|
||||
"private_repos": 10000
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"login": "t0m4uk1991",
|
||||
"id": 6698785,
|
||||
"node_id": "MDQ6VXNlcjY2OTg3ODU=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/6698785?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/t0m4uk1991",
|
||||
"html_url": "https://github.com/t0m4uk1991",
|
||||
"followers_url": "https://api.github.com/users/t0m4uk1991/followers",
|
||||
"following_url": "https://api.github.com/users/t0m4uk1991/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/t0m4uk1991/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/t0m4uk1991/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/t0m4uk1991/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/t0m4uk1991/orgs",
|
||||
"repos_url": "https://api.github.com/users/t0m4uk1991/repos",
|
||||
"events_url": "https://api.github.com/users/t0m4uk1991/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/t0m4uk1991/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false,
|
||||
"name": null,
|
||||
"company": null,
|
||||
"blog": "https://t0m4uk1991.github.io",
|
||||
"location": "Ukraine",
|
||||
"email": "t0m4uk1991@gmail.com",
|
||||
"hireable": true,
|
||||
"bio": null,
|
||||
"twitter_username": null,
|
||||
"public_repos": 14,
|
||||
"public_gists": 10,
|
||||
"followers": 2,
|
||||
"following": 2,
|
||||
"created_at": "2014-02-16T20:43:03Z",
|
||||
"updated_at": "2021-06-05T08:38:35Z",
|
||||
"private_gists": 2,
|
||||
"total_private_repos": 16,
|
||||
"owned_private_repos": 16,
|
||||
"disk_usage": 23717,
|
||||
"collaborators": 0,
|
||||
"two_factor_authentication": false,
|
||||
"plan": {
|
||||
"name": "free",
|
||||
"space": 976562499,
|
||||
"collaborators": 0,
|
||||
"private_repos": 10000
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,104 @@
|
||||
[
|
||||
{
|
||||
"owner_url": "https://api.github.com/users/t0m4uk1991",
|
||||
"url": "https://api.github.com/projects/12651120",
|
||||
"html_url": "https://github.com/users/t0m4uk1991/projects/3",
|
||||
"columns_url": "https://api.github.com/projects/12651120/columns",
|
||||
"id": 12651120,
|
||||
"node_id": "MDc6UHJvamVjdDEyNjUxMTIw",
|
||||
"name": "Project 1",
|
||||
"body": "Project 1",
|
||||
"number": 3,
|
||||
"state": "open",
|
||||
"creator": {
|
||||
"login": "t0m4uk1991",
|
||||
"id": 6698785,
|
||||
"node_id": "MDQ6VXNlcjY2OTg3ODU=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/6698785?u=dcfcdb0aa9e86943f3783dfdbe83be39de599a5d&v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/t0m4uk1991",
|
||||
"html_url": "https://github.com/t0m4uk1991",
|
||||
"followers_url": "https://api.github.com/users/t0m4uk1991/followers",
|
||||
"following_url": "https://api.github.com/users/t0m4uk1991/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/t0m4uk1991/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/t0m4uk1991/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/t0m4uk1991/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/t0m4uk1991/orgs",
|
||||
"repos_url": "https://api.github.com/users/t0m4uk1991/repos",
|
||||
"events_url": "https://api.github.com/users/t0m4uk1991/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/t0m4uk1991/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"created_at": "2021-06-10T17:58:40Z",
|
||||
"updated_at": "2021-06-10T17:58:40Z"
|
||||
},
|
||||
{
|
||||
"owner_url": "https://api.github.com/users/t0m4uk1991",
|
||||
"url": "https://api.github.com/projects/12651122",
|
||||
"html_url": "https://github.com/users/t0m4uk1991/projects/4",
|
||||
"columns_url": "https://api.github.com/projects/12651122/columns",
|
||||
"id": 12651122,
|
||||
"node_id": "MDc6UHJvamVjdDEyNjUxMTIy",
|
||||
"name": "Project 2",
|
||||
"body": "Project 2",
|
||||
"number": 4,
|
||||
"state": "open",
|
||||
"creator": {
|
||||
"login": "t0m4uk1991",
|
||||
"id": 6698785,
|
||||
"node_id": "MDQ6VXNlcjY2OTg3ODU=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/6698785?u=dcfcdb0aa9e86943f3783dfdbe83be39de599a5d&v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/t0m4uk1991",
|
||||
"html_url": "https://github.com/t0m4uk1991",
|
||||
"followers_url": "https://api.github.com/users/t0m4uk1991/followers",
|
||||
"following_url": "https://api.github.com/users/t0m4uk1991/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/t0m4uk1991/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/t0m4uk1991/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/t0m4uk1991/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/t0m4uk1991/orgs",
|
||||
"repos_url": "https://api.github.com/users/t0m4uk1991/repos",
|
||||
"events_url": "https://api.github.com/users/t0m4uk1991/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/t0m4uk1991/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"created_at": "2021-06-10T17:58:59Z",
|
||||
"updated_at": "2021-06-10T17:58:59Z"
|
||||
},
|
||||
{
|
||||
"owner_url": "https://api.github.com/users/t0m4uk1991",
|
||||
"url": "https://api.github.com/projects/12651123",
|
||||
"html_url": "https://github.com/users/t0m4uk1991/projects/5",
|
||||
"columns_url": "https://api.github.com/projects/12651123/columns",
|
||||
"id": 12651123,
|
||||
"node_id": "MDc6UHJvamVjdDEyNjUxMTIz",
|
||||
"name": "Project 3",
|
||||
"body": "Project 3",
|
||||
"number": 5,
|
||||
"state": "open",
|
||||
"creator": {
|
||||
"login": "t0m4uk1991",
|
||||
"id": 6698785,
|
||||
"node_id": "MDQ6VXNlcjY2OTg3ODU=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/6698785?u=dcfcdb0aa9e86943f3783dfdbe83be39de599a5d&v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/t0m4uk1991",
|
||||
"html_url": "https://github.com/t0m4uk1991",
|
||||
"followers_url": "https://api.github.com/users/t0m4uk1991/followers",
|
||||
"following_url": "https://api.github.com/users/t0m4uk1991/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/t0m4uk1991/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/t0m4uk1991/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/t0m4uk1991/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/t0m4uk1991/orgs",
|
||||
"repos_url": "https://api.github.com/users/t0m4uk1991/repos",
|
||||
"events_url": "https://api.github.com/users/t0m4uk1991/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/t0m4uk1991/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"created_at": "2021-06-10T17:59:15Z",
|
||||
"updated_at": "2021-06-10T17:59:15Z"
|
||||
}
|
||||
]
|
||||
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"id": "a20bf0ec-d676-4f9e-aaa0-b64e16887305",
|
||||
"name": "user",
|
||||
"request": {
|
||||
"url": "/user",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "user-1.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Thu, 10 Jun 2021 18:03:47 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"b7fb71c9f9723032eb235ddd346b34ab754f2b41d8a907c802131f8a771d71bb\"",
|
||||
"Last-Modified": "Sat, 05 Jun 2021 08:38:35 GMT",
|
||||
"X-OAuth-Scopes": "admin:org, repo, user",
|
||||
"X-Accepted-OAuth-Scopes": "",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4992",
|
||||
"X-RateLimit-Reset": "1623349987",
|
||||
"X-RateLimit-Used": "8",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "8DED:76B6:1A5518:1AEA33:60C25402"
|
||||
}
|
||||
},
|
||||
"uuid": "a20bf0ec-d676-4f9e-aaa0-b64e16887305",
|
||||
"persistent": true,
|
||||
"insertionIndex": 1
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
{
|
||||
"id": "50b95df9-b365-4f47-a298-756999a88046",
|
||||
"name": "users_t0m4uk1991",
|
||||
"request": {
|
||||
"url": "/users/t0m4uk1991",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "users_t0m4uk1991-2.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Thu, 10 Jun 2021 18:03:48 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"b7fb71c9f9723032eb235ddd346b34ab754f2b41d8a907c802131f8a771d71bb\"",
|
||||
"Last-Modified": "Sat, 05 Jun 2021 08:38:35 GMT",
|
||||
"X-OAuth-Scopes": "admin:org, repo, user",
|
||||
"X-Accepted-OAuth-Scopes": "",
|
||||
"X-GitHub-Media-Type": "unknown, github.v3",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4990",
|
||||
"X-RateLimit-Reset": "1623349987",
|
||||
"X-RateLimit-Used": "10",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "1F30:2A5E:63945:69C68:60C25404"
|
||||
}
|
||||
},
|
||||
"uuid": "50b95df9-b365-4f47-a298-756999a88046",
|
||||
"persistent": true,
|
||||
"insertionIndex": 2
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"id": "a9d6c6bb-6be3-486a-9beb-17f1270fbfa9",
|
||||
"name": "users_t0m4uk1991_projects",
|
||||
"request": {
|
||||
"url": "/users/t0m4uk1991/projects",
|
||||
"method": "GET",
|
||||
"headers": {
|
||||
"Accept": {
|
||||
"equalTo": "application/vnd.github.inertia-preview+json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"response": {
|
||||
"status": 200,
|
||||
"bodyFileName": "users_t0m4uk1991_projects-3.json",
|
||||
"headers": {
|
||||
"Server": "GitHub.com",
|
||||
"Date": "Thu, 10 Jun 2021 18:03:48 GMT",
|
||||
"Content-Type": "application/json; charset=utf-8",
|
||||
"Cache-Control": "private, max-age=60, s-maxage=60",
|
||||
"Vary": [
|
||||
"Accept, Authorization, Cookie, X-GitHub-OTP",
|
||||
"Accept-Encoding, Accept, X-Requested-With"
|
||||
],
|
||||
"ETag": "W/\"ca6ae9200bb8d394dfb5a5f588e60071af37a4c8f23daf2e3e0ee8c305ab1e91\"",
|
||||
"X-OAuth-Scopes": "admin:org, repo, user",
|
||||
"X-Accepted-OAuth-Scopes": "repo",
|
||||
"X-GitHub-Media-Type": "github.inertia-preview; format=json",
|
||||
"X-RateLimit-Limit": "5000",
|
||||
"X-RateLimit-Remaining": "4989",
|
||||
"X-RateLimit-Reset": "1623349987",
|
||||
"X-RateLimit-Used": "11",
|
||||
"X-RateLimit-Resource": "core",
|
||||
"Strict-Transport-Security": "max-age=31536000; includeSubdomains; preload",
|
||||
"X-Frame-Options": "deny",
|
||||
"X-Content-Type-Options": "nosniff",
|
||||
"X-XSS-Protection": "0",
|
||||
"Referrer-Policy": "origin-when-cross-origin, strict-origin-when-cross-origin",
|
||||
"Content-Security-Policy": "default-src 'none'",
|
||||
"X-GitHub-Request-Id": "AC93:2A60:1A7CBA:1B1351:60C25404"
|
||||
}
|
||||
},
|
||||
"uuid": "a9d6c6bb-6be3-486a-9beb-17f1270fbfa9",
|
||||
"persistent": true,
|
||||
"insertionIndex": 3
|
||||
}
|
||||
@@ -0,0 +1,132 @@
|
||||
{
|
||||
"id": 375534019,
|
||||
"node_id": "MDEwOlJlcG9zaXRvcnkzNzU1MzQwMTk=",
|
||||
"name": "testCreateRelease",
|
||||
"full_name": "hub4j-test-org/testCreateRelease",
|
||||
"private": false,
|
||||
"owner": {
|
||||
"login": "hub4j-test-org",
|
||||
"id": 7544739,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/hub4j-test-org",
|
||||
"html_url": "https://github.com/hub4j-test-org",
|
||||
"followers_url": "https://api.github.com/users/hub4j-test-org/followers",
|
||||
"following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/hub4j-test-org/orgs",
|
||||
"repos_url": "https://api.github.com/users/hub4j-test-org/repos",
|
||||
"events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/hub4j-test-org/received_events",
|
||||
"type": "Organization",
|
||||
"site_admin": false
|
||||
},
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease",
|
||||
"description": null,
|
||||
"fork": false,
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease",
|
||||
"forks_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/forks",
|
||||
"keys_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/keys{/key_id}",
|
||||
"collaborators_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/collaborators{/collaborator}",
|
||||
"teams_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/teams",
|
||||
"hooks_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/hooks",
|
||||
"issue_events_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/issues/events{/number}",
|
||||
"events_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/events",
|
||||
"assignees_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/assignees{/user}",
|
||||
"branches_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/branches{/branch}",
|
||||
"tags_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tags",
|
||||
"blobs_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/blobs{/sha}",
|
||||
"git_tags_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/tags{/sha}",
|
||||
"git_refs_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/refs{/sha}",
|
||||
"trees_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/trees{/sha}",
|
||||
"statuses_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/statuses/{sha}",
|
||||
"languages_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/languages",
|
||||
"stargazers_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/stargazers",
|
||||
"contributors_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/contributors",
|
||||
"subscribers_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/subscribers",
|
||||
"subscription_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/subscription",
|
||||
"commits_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/commits{/sha}",
|
||||
"git_commits_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/git/commits{/sha}",
|
||||
"comments_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/comments{/number}",
|
||||
"issue_comment_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/issues/comments{/number}",
|
||||
"contents_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/contents/{+path}",
|
||||
"compare_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/compare/{base}...{head}",
|
||||
"merges_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/merges",
|
||||
"archive_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/{archive_format}{/ref}",
|
||||
"downloads_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/downloads",
|
||||
"issues_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/issues{/number}",
|
||||
"pulls_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/pulls{/number}",
|
||||
"milestones_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/milestones{/number}",
|
||||
"notifications_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/notifications{?since,all,participating}",
|
||||
"labels_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/labels{/name}",
|
||||
"releases_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases{/id}",
|
||||
"deployments_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/deployments",
|
||||
"created_at": "2021-06-10T01:25:59Z",
|
||||
"updated_at": "2021-06-10T01:31:14Z",
|
||||
"pushed_at": "2021-06-10T15:53:21Z",
|
||||
"git_url": "git://github.com/hub4j-test-org/testCreateRelease.git",
|
||||
"ssh_url": "git@github.com:hub4j-test-org/testCreateRelease.git",
|
||||
"clone_url": "https://github.com/hub4j-test-org/testCreateRelease.git",
|
||||
"svn_url": "https://github.com/hub4j-test-org/testCreateRelease",
|
||||
"homepage": null,
|
||||
"size": 11948,
|
||||
"stargazers_count": 0,
|
||||
"watchers_count": 0,
|
||||
"language": "Java",
|
||||
"has_issues": false,
|
||||
"has_projects": false,
|
||||
"has_downloads": true,
|
||||
"has_wiki": false,
|
||||
"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": "main",
|
||||
"permissions": {
|
||||
"admin": true,
|
||||
"push": true,
|
||||
"pull": true
|
||||
},
|
||||
"temp_clone_token": "",
|
||||
"allow_squash_merge": true,
|
||||
"allow_merge_commit": true,
|
||||
"allow_rebase_merge": true,
|
||||
"delete_branch_on_merge": false,
|
||||
"organization": {
|
||||
"login": "hub4j-test-org",
|
||||
"id": 7544739,
|
||||
"node_id": "MDEyOk9yZ2FuaXphdGlvbjc1NDQ3Mzk=",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/7544739?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/hub4j-test-org",
|
||||
"html_url": "https://github.com/hub4j-test-org",
|
||||
"followers_url": "https://api.github.com/users/hub4j-test-org/followers",
|
||||
"following_url": "https://api.github.com/users/hub4j-test-org/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/hub4j-test-org/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/hub4j-test-org/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/hub4j-test-org/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/hub4j-test-org/orgs",
|
||||
"repos_url": "https://api.github.com/users/hub4j-test-org/repos",
|
||||
"events_url": "https://api.github.com/users/hub4j-test-org/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/hub4j-test-org/received_events",
|
||||
"type": "Organization",
|
||||
"site_admin": false
|
||||
},
|
||||
"network_count": 0,
|
||||
"subscribers_count": 12
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44426630",
|
||||
"assets_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44426630/assets",
|
||||
"upload_url": "https://uploads.github.com/repos/hub4j-test-org/testCreateRelease/releases/44426630/assets{?name,label}",
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease/releases/tag/5e939796-aa9b-4973-8e2a-60662a2a2029",
|
||||
"id": 44426630,
|
||||
"author": {
|
||||
"login": "jlengrand",
|
||||
"id": 921666,
|
||||
"node_id": "MDQ6VXNlcjkyMTY2Ng==",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/921666?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/jlengrand",
|
||||
"html_url": "https://github.com/jlengrand",
|
||||
"followers_url": "https://api.github.com/users/jlengrand/followers",
|
||||
"following_url": "https://api.github.com/users/jlengrand/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/jlengrand/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/jlengrand/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/jlengrand/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/jlengrand/orgs",
|
||||
"repos_url": "https://api.github.com/users/jlengrand/repos",
|
||||
"events_url": "https://api.github.com/users/jlengrand/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/jlengrand/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"node_id": "MDc6UmVsZWFzZTQ0NDI2NjMw",
|
||||
"tag_name": "5e939796-aa9b-4973-8e2a-60662a2a2029",
|
||||
"target_commitish": "main",
|
||||
"name": "release-5e939796-aa9b-4973-8e2a-60662a2a2029",
|
||||
"draft": false,
|
||||
"prerelease": false,
|
||||
"created_at": "2021-06-02T21:59:14Z",
|
||||
"published_at": "2021-06-10T16:06:31Z",
|
||||
"assets": [],
|
||||
"tarball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tarball/5e939796-aa9b-4973-8e2a-60662a2a2029",
|
||||
"zipball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/zipball/5e939796-aa9b-4973-8e2a-60662a2a2029",
|
||||
"body": null
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44426316",
|
||||
"assets_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44426316/assets",
|
||||
"upload_url": "https://uploads.github.com/repos/hub4j-test-org/testCreateRelease/releases/44426316/assets{?name,label}",
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease/releases/tag/e0d1b4f4-00a2-4127-b26f-50a802ec47ba",
|
||||
"id": 44426316,
|
||||
"author": {
|
||||
"login": "jlengrand",
|
||||
"id": 921666,
|
||||
"node_id": "MDQ6VXNlcjkyMTY2Ng==",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/921666?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/jlengrand",
|
||||
"html_url": "https://github.com/jlengrand",
|
||||
"followers_url": "https://api.github.com/users/jlengrand/followers",
|
||||
"following_url": "https://api.github.com/users/jlengrand/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/jlengrand/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/jlengrand/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/jlengrand/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/jlengrand/orgs",
|
||||
"repos_url": "https://api.github.com/users/jlengrand/repos",
|
||||
"events_url": "https://api.github.com/users/jlengrand/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/jlengrand/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"node_id": "MDc6UmVsZWFzZTQ0NDI2MzE2",
|
||||
"tag_name": "e0d1b4f4-00a2-4127-b26f-50a802ec47ba",
|
||||
"target_commitish": "main",
|
||||
"name": "release-e0d1b4f4-00a2-4127-b26f-50a802ec47ba",
|
||||
"draft": false,
|
||||
"prerelease": false,
|
||||
"created_at": "2021-06-02T21:59:14Z",
|
||||
"published_at": "2021-06-10T16:02:22Z",
|
||||
"assets": [],
|
||||
"tarball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tarball/e0d1b4f4-00a2-4127-b26f-50a802ec47ba",
|
||||
"zipball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/zipball/e0d1b4f4-00a2-4127-b26f-50a802ec47ba",
|
||||
"body": null
|
||||
}
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
"url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44426414",
|
||||
"assets_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/releases/44426414/assets",
|
||||
"upload_url": "https://uploads.github.com/repos/hub4j-test-org/testCreateRelease/releases/44426414/assets{?name,label}",
|
||||
"html_url": "https://github.com/hub4j-test-org/testCreateRelease/releases/tag/6cc26e0a-830e-4fff-8db2-3e222f76c43b",
|
||||
"id": 44426414,
|
||||
"author": {
|
||||
"login": "jlengrand",
|
||||
"id": 921666,
|
||||
"node_id": "MDQ6VXNlcjkyMTY2Ng==",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/921666?v=4",
|
||||
"gravatar_id": "",
|
||||
"url": "https://api.github.com/users/jlengrand",
|
||||
"html_url": "https://github.com/jlengrand",
|
||||
"followers_url": "https://api.github.com/users/jlengrand/followers",
|
||||
"following_url": "https://api.github.com/users/jlengrand/following{/other_user}",
|
||||
"gists_url": "https://api.github.com/users/jlengrand/gists{/gist_id}",
|
||||
"starred_url": "https://api.github.com/users/jlengrand/starred{/owner}{/repo}",
|
||||
"subscriptions_url": "https://api.github.com/users/jlengrand/subscriptions",
|
||||
"organizations_url": "https://api.github.com/users/jlengrand/orgs",
|
||||
"repos_url": "https://api.github.com/users/jlengrand/repos",
|
||||
"events_url": "https://api.github.com/users/jlengrand/events{/privacy}",
|
||||
"received_events_url": "https://api.github.com/users/jlengrand/received_events",
|
||||
"type": "User",
|
||||
"site_admin": false
|
||||
},
|
||||
"node_id": "MDc6UmVsZWFzZTQ0NDI2NDE0",
|
||||
"tag_name": "6cc26e0a-830e-4fff-8db2-3e222f76c43b",
|
||||
"target_commitish": "main",
|
||||
"name": "release-6cc26e0a-830e-4fff-8db2-3e222f76c43b",
|
||||
"draft": false,
|
||||
"prerelease": false,
|
||||
"created_at": "2021-06-02T21:59:14Z",
|
||||
"published_at": "2021-06-10T16:03:11Z",
|
||||
"assets": [],
|
||||
"tarball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/tarball/6cc26e0a-830e-4fff-8db2-3e222f76c43b",
|
||||
"zipball_url": "https://api.github.com/repos/hub4j-test-org/testCreateRelease/zipball/6cc26e0a-830e-4fff-8db2-3e222f76c43b",
|
||||
"body": null
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user