mirror of
https://github.com/jlengrand/github-api.git
synced 2026-03-10 08:21:21 +00:00
Adds discussion url value in GHRelease
* Discussion URLs are present for release where a discussion has been created * Also adds test
This commit is contained in:
@@ -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 getDiscussion_url() {
|
||||
return discussion_url;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets assets url.
|
||||
|
||||
@@ -25,6 +25,28 @@ public class GHReleaseTest extends AbstractGitHubWireMockTest {
|
||||
assertThat(releaseCheck, notNullValue());
|
||||
assertThat(releaseCheck.getTagName(), is(tagName));
|
||||
assertThat(releaseCheck.isPrerelease(), is(false));
|
||||
assertThat(releaseCheck.getDiscussion_url(), 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();
|
||||
|
||||
GHRelease releaseCheck = repo.getRelease(release.getId());
|
||||
|
||||
try{
|
||||
assertThat(releaseCheck, notNullValue());
|
||||
assertThat(releaseCheck.getTagName(), is(tagName));
|
||||
assertThat(releaseCheck.getDiscussion_url(), nullValue());
|
||||
}
|
||||
finally {
|
||||
release.delete();
|
||||
|
||||
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user