type
string | public
bool | payload
string | repo
dict | actor
dict | org
dict | created_at
timestamp[us] | id
string | other
string |
|---|---|---|---|---|---|---|---|---|
PushEvent
| true
|
{"push_id":5028952897,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fe1629a5c2b96c1d1ccd7e1c7a824796c02992a3","before":"38d12da637e745cec290d1ae58e2b8d59f77dfa7","commits":[{"sha":"fe1629a5c2b96c1d1ccd7e1c7a824796c02992a3","author":{"name":"andreas kainz","email":"[email protected]"},"message":"Template: add Draw BPMN template\n\nChange-Id: Ib3dca0ea391718bb92827764f197fe24143e9805\nReviewed-on: https://gerrit.libreoffice.org/c/core/+/93514\nTested-by: Jenkins\nReviewed-by: andreas_kainz <[email protected]>","distinct":true,"url":"https://api.github.com/repos/LibreOffice/core/commits/fe1629a5c2b96c1d1ccd7e1c7a824796c02992a3"}]}
|
{
"id": 14021280,
"name": "LibreOffice/core",
"url": "https://api.github.com/repos/LibreOffice/core"
}
|
{
"id": 40293980,
"login": "tdf-gerrit",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/40293980?",
"url": "https://api.github.com/users/tdf-gerrit"
}
|
{
"id": 5824056,
"login": "LibreOffice",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/5824056?",
"url": "https://api.github.com/orgs/LibreOffice"
}
| 2020-05-06T11:17:38
|
12256020564
|
{"actor":{"display_login":"tdf-gerrit"}}
|
PushEvent
| true
|
{"push_id":4733460600,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d9a7cbad22f5436fde61b5b645db15179fed2142","before":"2dc904c43f0755fee15692619c952007d62af9b9","commits":[{"sha":"d9a7cbad22f5436fde61b5b645db15179fed2142","author":{"name":"a","email":"[email protected]"},"message":"","distinct":true,"url":"https://api.github.com/repos/x9mdwe5q/ncovlog/commits/d9a7cbad22f5436fde61b5b645db15179fed2142"}]}
|
{
"id": 236716829,
"name": "x9mdwe5q/ncovlog",
"url": "https://api.github.com/repos/x9mdwe5q/ncovlog"
}
|
{
"id": 57040119,
"login": "x9mdwe5q",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/57040119?",
"url": "https://api.github.com/users/x9mdwe5q"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-03-07T21:40:05
|
11706364499
|
{"actor":{"display_login":"x9mdwe5q"}}
|
IssueCommentEvent
| true
|
{"action":"created","issue":{"url":"https://api.github.com/repos/cla-assistant/cla-assistant/issues/545","repository_url":"https://api.github.com/repos/cla-assistant/cla-assistant","labels_url":"https://api.github.com/repos/cla-assistant/cla-assistant/issues/545/labels{/name}","comments_url":"https://api.github.com/repos/cla-assistant/cla-assistant/issues/545/comments","events_url":"https://api.github.com/repos/cla-assistant/cla-assistant/issues/545/events","html_url":"https://github.com/cla-assistant/cla-assistant/issues/545","id":582316326,"node_id":"MDU6SXNzdWU1ODIzMTYzMjY=","number":545,"title":"Race condition leading to dropped webhooks","user":{"login":"bobvawter","id":1158548,"node_id":"MDQ6VXNlcjExNTg1NDg=","avatar_url":"https://avatars3.githubusercontent.com/u/1158548?v=4","gravatar_id":"","url":"https://api.github.com/users/bobvawter","html_url":"https://github.com/bobvawter","followers_url":"https://api.github.com/users/bobvawter/followers","following_url":"https://api.github.com/users/bobvawter/following{/other_user}","gists_url":"https://api.github.com/users/bobvawter/gists{/gist_id}","starred_url":"https://api.github.com/users/bobvawter/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bobvawter/subscriptions","organizations_url":"https://api.github.com/users/bobvawter/orgs","repos_url":"https://api.github.com/users/bobvawter/repos","events_url":"https://api.github.com/users/bobvawter/events{/privacy}","received_events_url":"https://api.github.com/users/bobvawter/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":2,"created_at":"2020-03-16T13:57:33Z","updated_at":"2020-03-16T14:11:24Z","closed_at":null,"author_association":"NONE","body":"I've been running down issues similar to #528 and so on in a private installation of CLA Assistant. What I'm seeing in our https://github.com/cockroachdb/cockroach repo is that it's possible for a `review_requested` action to be sent and received before the `opened` action. This doesn't play nicely with the debouncing behavior in CLA assistant and leads to stalled CLA checks.\r\n\r\nThe code which attempts to debounce actions on webhooks here: https://github.com/cla-assistant/cla-assistant/blob/master/src/server/app.js#L254-L281\r\n\r\nThe code which handles the incoming pull-request notification only takes action in response to three of the possible event actions:\r\nhttps://github.com/cla-assistant/cla-assistant/blob/master/src/server/webhooks/pull_request.js#L135\r\n\r\nIf the first webhook received has an action other than `opened`, `reopened`, or `synchronized`, the handler will be a no-op, responding with a 200. If the `opened` action then lands within the 2-second window it gets logged as redundant and a 202 is returned.\r\n\r\nI have found a pair of webhook events in the GitHub delivery log which confirm that `review_requested` received a 200, while `opened` received a 202.\r\n\r\nOne solution here would be to make the webhook handler functions return a boolean to report back to `server/app.js` as to whether or not the request should be considered handled, which would then drive the debouncing behavior."},"comment":{"url":"https://api.github.com/repos/cla-assistant/cla-assistant/issues/comments/599557805","html_url":"https://github.com/cla-assistant/cla-assistant/issues/545#issuecomment-599557805","issue_url":"https://api.github.com/repos/cla-assistant/cla-assistant/issues/545","id":599557805,"node_id":"MDEyOklzc3VlQ29tbWVudDU5OTU1NzgwNQ==","user":{"login":"KharitonOff","id":8480657,"node_id":"MDQ6VXNlcjg0ODA2NTc=","avatar_url":"https://avatars1.githubusercontent.com/u/8480657?v=4","gravatar_id":"","url":"https://api.github.com/users/KharitonOff","html_url":"https://github.com/KharitonOff","followers_url":"https://api.github.com/users/KharitonOff/followers","following_url":"https://api.github.com/users/KharitonOff/following{/other_user}","gists_url":"https://api.github.com/users/KharitonOff/gists{/gist_id}","starred_url":"https://api.github.com/users/KharitonOff/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/KharitonOff/subscriptions","organizations_url":"https://api.github.com/users/KharitonOff/orgs","repos_url":"https://api.github.com/users/KharitonOff/repos","events_url":"https://api.github.com/users/KharitonOff/events{/privacy}","received_events_url":"https://api.github.com/users/KharitonOff/received_events","type":"User","site_admin":false},"created_at":"2020-03-16T14:11:24Z","updated_at":"2020-03-16T14:11:24Z","author_association":"MEMBER","body":"Great catch! I've just stumbled over the same issue in our logs. Looking forward to your PR 😃 "}}
|
{
"id": 26210598,
"name": "cla-assistant/cla-assistant",
"url": "https://api.github.com/repos/cla-assistant/cla-assistant"
}
|
{
"id": 8480657,
"login": "KharitonOff",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/8480657?",
"url": "https://api.github.com/users/KharitonOff"
}
|
{
"id": 9502963,
"login": "cla-assistant",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/9502963?",
"url": "https://api.github.com/orgs/cla-assistant"
}
| 2020-03-16T14:11:24
|
11777012106
|
{"actor":{"display_login":"KharitonOff"}}
|
PushEvent
| true
|
{"push_id":4767232863,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"9ccd426d055d0641ef4345c1ad44cf6af3061196","before":"b2dfcf6d3c3f338381300ab4d17c5635e8ffae97","commits":[{"sha":"9ccd426d055d0641ef4345c1ad44cf6af3061196","author":{"name":"DaRealAqua","email":"0f814d4fedf2d336cc28dd4c04dc4ed2e1196bf0@users.noreply.github.com"},"message":"Update Main.php","distinct":true,"url":"https://api.github.com/repos/DaRealAqua/SimpleTagsUI/commits/9ccd426d055d0641ef4345c1ad44cf6af3061196"}]}
|
{
"id": 247457118,
"name": "DaRealAqua/SimpleTagsUI",
"url": "https://api.github.com/repos/DaRealAqua/SimpleTagsUI"
}
|
{
"id": 42686040,
"login": "DaRealAqua",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/42686040?",
"url": "https://api.github.com/users/DaRealAqua"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-03-15T11:59:23
|
11768771916
|
{"actor":{"display_login":"DaRealAqua"}}
|
PullRequestEvent
| true
|
{"action":"opened","number":1649,"pull_request":{"url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/pulls/1649","id":383253964,"node_id":"MDExOlB1bGxSZXF1ZXN0MzgzMjUzOTY0","html_url":"https://github.com/changeworld/azure-docs.ja-jp/pull/1649","diff_url":"https://github.com/changeworld/azure-docs.ja-jp/pull/1649.diff","patch_url":"https://github.com/changeworld/azure-docs.ja-jp/pull/1649.patch","issue_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/issues/1649","number":1649,"state":"open","locked":false,"title":"[pull] master from MicrosoftDocs:master","user":{"login":"pull[bot]","id":39814207,"node_id":"MDM6Qm90Mzk4MTQyMDc=","avatar_url":"https://avatars0.githubusercontent.com/in/12910?v=4","gravatar_id":"","url":"https://api.github.com/users/pull%5Bbot%5D","html_url":"https://github.com/apps/pull","followers_url":"https://api.github.com/users/pull%5Bbot%5D/followers","following_url":"https://api.github.com/users/pull%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/pull%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/pull%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/pull%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/pull%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/pull%5Bbot%5D/repos","events_url":"https://api.github.com/users/pull%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/pull%5Bbot%5D/received_events","type":"Bot","site_admin":false},"body":"See Commits and Changes for more details.\n\n-----\nCreated by [<img src=\"https://prod.download/pull-18h-svg\" valign=\"bottom\"/> **pull[bot]**](https://github.com/wei/pull). Want to support this open source service? [Please star it : )](https://github.com/wei/pull)","created_at":"2020-03-03T23:47:15Z","updated_at":"2020-03-03T23:47:15Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"commits_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/pulls/1649/commits","review_comments_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/pulls/1649/comments","review_comment_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/pulls/comments{/number}","comments_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/issues/1649/comments","statuses_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/statuses/a9b6b2f6ae4b62342b0ca757a59a0d9b76f1a59b","head":{"label":"MicrosoftDocs:master","ref":"master","sha":"a9b6b2f6ae4b62342b0ca757a59a0d9b76f1a59b","user":{"login":"MicrosoftDocs","id":22479449,"node_id":"MDEyOk9yZ2FuaXphdGlvbjIyNDc5NDQ5","avatar_url":"https://avatars2.githubusercontent.com/u/22479449?v=4","gravatar_id":"","url":"https://api.github.com/users/MicrosoftDocs","html_url":"https://github.com/MicrosoftDocs","followers_url":"https://api.github.com/users/MicrosoftDocs/followers","following_url":"https://api.github.com/users/MicrosoftDocs/following{/other_user}","gists_url":"https://api.github.com/users/MicrosoftDocs/gists{/gist_id}","starred_url":"https://api.github.com/users/MicrosoftDocs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MicrosoftDocs/subscriptions","organizations_url":"https://api.github.com/users/MicrosoftDocs/orgs","repos_url":"https://api.github.com/users/MicrosoftDocs/repos","events_url":"https://api.github.com/users/MicrosoftDocs/events{/privacy}","received_events_url":"https://api.github.com/users/MicrosoftDocs/received_events","type":"Organization","site_admin":false},"repo":{"id":73312927,"node_id":"MDEwOlJlcG9zaXRvcnk3MzMxMjkyNw==","name":"azure-docs.ja-jp","full_name":"MicrosoftDocs/azure-docs.ja-jp","private":false,"owner":{"login":"MicrosoftDocs","id":22479449,"node_id":"MDEyOk9yZ2FuaXphdGlvbjIyNDc5NDQ5","avatar_url":"https://avatars2.githubusercontent.com/u/22479449?v=4","gravatar_id":"","url":"https://api.github.com/users/MicrosoftDocs","html_url":"https://github.com/MicrosoftDocs","followers_url":"https://api.github.com/users/MicrosoftDocs/followers","following_url":"https://api.github.com/users/MicrosoftDocs/following{/other_user}","gists_url":"https://api.github.com/users/MicrosoftDocs/gists{/gist_id}","starred_url":"https://api.github.com/users/MicrosoftDocs/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MicrosoftDocs/subscriptions","organizations_url":"https://api.github.com/users/MicrosoftDocs/orgs","repos_url":"https://api.github.com/users/MicrosoftDocs/repos","events_url":"https://api.github.com/users/MicrosoftDocs/events{/privacy}","received_events_url":"https://api.github.com/users/MicrosoftDocs/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/MicrosoftDocs/azure-docs.ja-jp","description":null,"fork":false,"url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp","forks_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/forks","keys_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/keys{/key_id}","collaborators_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/teams","hooks_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/hooks","issue_events_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/issues/events{/number}","events_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/events","assignees_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/assignees{/user}","branches_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/branches{/branch}","tags_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/tags","blobs_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/git/refs{/sha}","trees_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/git/trees{/sha}","statuses_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/statuses/{sha}","languages_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/languages","stargazers_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/stargazers","contributors_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/contributors","subscribers_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/subscribers","subscription_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/subscription","commits_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/commits{/sha}","git_commits_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/git/commits{/sha}","comments_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/comments{/number}","issue_comment_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/issues/comments{/number}","contents_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/contents/{+path}","compare_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/compare/{base}...{head}","merges_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/merges","archive_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/downloads","issues_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/issues{/number}","pulls_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/pulls{/number}","milestones_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/milestones{/number}","notifications_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/labels{/name}","releases_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/releases{/id}","deployments_url":"https://api.github.com/repos/MicrosoftDocs/azure-docs.ja-jp/deployments","created_at":"2016-11-09T19:04:34Z","updated_at":"2020-03-03T23:30:39Z","pushed_at":"2020-03-03T23:30:36Z","git_url":"git://github.com/MicrosoftDocs/azure-docs.ja-jp.git","ssh_url":"[email protected]:MicrosoftDocs/azure-docs.ja-jp.git","clone_url":"https://github.com/MicrosoftDocs/azure-docs.ja-jp.git","svn_url":"https://github.com/MicrosoftDocs/azure-docs.ja-jp","homepage":null,"size":2183514,"stargazers_count":82,"watchers_count":82,"language":"PowerShell","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":245,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":14,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":245,"open_issues":14,"watchers":82,"default_branch":"master"}},"base":{"label":"changeworld:master","ref":"master","sha":"f28ab503d42f1bf4fa7ace2bb473ee8fbfe61c93","user":{"login":"changeworld","id":1207985,"node_id":"MDQ6VXNlcjEyMDc5ODU=","avatar_url":"https://avatars1.githubusercontent.com/u/1207985?v=4","gravatar_id":"","url":"https://api.github.com/users/changeworld","html_url":"https://github.com/changeworld","followers_url":"https://api.github.com/users/changeworld/followers","following_url":"https://api.github.com/users/changeworld/following{/other_user}","gists_url":"https://api.github.com/users/changeworld/gists{/gist_id}","starred_url":"https://api.github.com/users/changeworld/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/changeworld/subscriptions","organizations_url":"https://api.github.com/users/changeworld/orgs","repos_url":"https://api.github.com/users/changeworld/repos","events_url":"https://api.github.com/users/changeworld/events{/privacy}","received_events_url":"https://api.github.com/users/changeworld/received_events","type":"User","site_admin":false},"repo":{"id":74319455,"node_id":"MDEwOlJlcG9zaXRvcnk3NDMxOTQ1NQ==","name":"azure-docs.ja-jp","full_name":"changeworld/azure-docs.ja-jp","private":false,"owner":{"login":"changeworld","id":1207985,"node_id":"MDQ6VXNlcjEyMDc5ODU=","avatar_url":"https://avatars1.githubusercontent.com/u/1207985?v=4","gravatar_id":"","url":"https://api.github.com/users/changeworld","html_url":"https://github.com/changeworld","followers_url":"https://api.github.com/users/changeworld/followers","following_url":"https://api.github.com/users/changeworld/following{/other_user}","gists_url":"https://api.github.com/users/changeworld/gists{/gist_id}","starred_url":"https://api.github.com/users/changeworld/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/changeworld/subscriptions","organizations_url":"https://api.github.com/users/changeworld/orgs","repos_url":"https://api.github.com/users/changeworld/repos","events_url":"https://api.github.com/users/changeworld/events{/privacy}","received_events_url":"https://api.github.com/users/changeworld/received_events","type":"User","site_admin":false},"html_url":"https://github.com/changeworld/azure-docs.ja-jp","description":null,"fork":true,"url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp","forks_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/forks","keys_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/keys{/key_id}","collaborators_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/teams","hooks_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/hooks","issue_events_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/issues/events{/number}","events_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/events","assignees_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/assignees{/user}","branches_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/branches{/branch}","tags_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/tags","blobs_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/git/refs{/sha}","trees_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/git/trees{/sha}","statuses_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/statuses/{sha}","languages_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/languages","stargazers_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/stargazers","contributors_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/contributors","subscribers_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/subscribers","subscription_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/subscription","commits_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/commits{/sha}","git_commits_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/git/commits{/sha}","comments_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/comments{/number}","issue_comment_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/issues/comments{/number}","contents_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/contents/{+path}","compare_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/compare/{base}...{head}","merges_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/merges","archive_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/downloads","issues_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/issues{/number}","pulls_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/pulls{/number}","milestones_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/milestones{/number}","notifications_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/labels{/name}","releases_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/releases{/id}","deployments_url":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/deployments","created_at":"2016-11-21T02:39:52Z","updated_at":"2020-03-03T21:47:18Z","pushed_at":"2020-03-03T21:47:16Z","git_url":"git://github.com/changeworld/azure-docs.ja-jp.git","ssh_url":"[email protected]:changeworld/azure-docs.ja-jp.git","clone_url":"https://github.com/changeworld/azure-docs.ja-jp.git","svn_url":"https://github.com/changeworld/azure-docs.ja-jp","homepage":null,"size":2183450,"stargazers_count":0,"watchers_count":0,"language":"PowerShell","has_issues":false,"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":1,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":0,"open_issues":1,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/pulls/1649"},"html":{"href":"https://github.com/changeworld/azure-docs.ja-jp/pull/1649"},"issue":{"href":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/issues/1649"},"comments":{"href":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/issues/1649/comments"},"review_comments":{"href":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/pulls/1649/comments"},"review_comment":{"href":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/pulls/1649/commits"},"statuses":{"href":"https://api.github.com/repos/changeworld/azure-docs.ja-jp/statuses/a9b6b2f6ae4b62342b0ca757a59a0d9b76f1a59b"}},"author_association":"NONE","merged":false,"mergeable":null,"rebaseable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"maintainer_can_modify":false,"commits":1,"additions":5,"deletions":0,"changed_files":1}}
|
{
"id": 74319455,
"name": "changeworld/azure-docs.ja-jp",
"url": "https://api.github.com/repos/changeworld/azure-docs.ja-jp"
}
|
{
"id": 39814207,
"login": "pull[bot]",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/39814207?",
"url": "https://api.github.com/users/pull[bot]"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-03-03T23:47:16
|
11670384204
|
{"actor":{"display_login":"pull"}}
|
PushEvent
| true
|
{"push_id":5476785682,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"94a6718dc83276a7b1d8717939212854c8f0070e","before":"d539ea845f896c887b1e7b625800a293d280f80b","commits":[{"sha":"94a6718dc83276a7b1d8717939212854c8f0070e","author":{"name":"DoQuocBinh","email":"[email protected]"},"message":"example of using date function","distinct":true,"url":"https://api.github.com/repos/DoQuocBinh/GCH0715-cloud/commits/94a6718dc83276a7b1d8717939212854c8f0070e"}]}
|
{
"id": 277711163,
"name": "DoQuocBinh/GCH0715-cloud",
"url": "https://api.github.com/repos/DoQuocBinh/GCH0715-cloud"
}
|
{
"id": 12690589,
"login": "DoQuocBinh",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/12690589?",
"url": "https://api.github.com/users/DoQuocBinh"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-08-04T05:12:28
|
13101875803
|
{"actor":{"display_login":"DoQuocBinh"}}
|
PullRequestEvent
| true
|
{"action":"opened","number":117,"pull_request":{"url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/pulls/117","id":506826497,"node_id":"MDExOlB1bGxSZXF1ZXN0NTA2ODI2NDk3","html_url":"https://github.com/MLSA-Mehran-UET/Learn-to-code-java/pull/117","diff_url":"https://github.com/MLSA-Mehran-UET/Learn-to-code-java/pull/117.diff","patch_url":"https://github.com/MLSA-Mehran-UET/Learn-to-code-java/pull/117.patch","issue_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/issues/117","number":117,"state":"open","locked":false,"title":"Add recursion","user":{"login":"siraiwaqarali","id":49365563,"node_id":"MDQ6VXNlcjQ5MzY1NTYz","avatar_url":"https://avatars1.githubusercontent.com/u/49365563?v=4","gravatar_id":"","url":"https://api.github.com/users/siraiwaqarali","html_url":"https://github.com/siraiwaqarali","followers_url":"https://api.github.com/users/siraiwaqarali/followers","following_url":"https://api.github.com/users/siraiwaqarali/following{/other_user}","gists_url":"https://api.github.com/users/siraiwaqarali/gists{/gist_id}","starred_url":"https://api.github.com/users/siraiwaqarali/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/siraiwaqarali/subscriptions","organizations_url":"https://api.github.com/users/siraiwaqarali/orgs","repos_url":"https://api.github.com/users/siraiwaqarali/repos","events_url":"https://api.github.com/users/siraiwaqarali/events{/privacy}","received_events_url":"https://api.github.com/users/siraiwaqarali/received_events","type":"User","site_admin":false},"body":"","created_at":"2020-10-20T13:55:40Z","updated_at":"2020-10-20T13:55:40Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/pulls/117/commits","review_comments_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/pulls/117/comments","review_comment_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/pulls/comments{/number}","comments_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/issues/117/comments","statuses_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/statuses/85c53968ba29c3e41e540d2816627f03de53a29e","head":{"label":"siraiwaqarali:add-recursion","ref":"add-recursion","sha":"85c53968ba29c3e41e540d2816627f03de53a29e","user":{"login":"siraiwaqarali","id":49365563,"node_id":"MDQ6VXNlcjQ5MzY1NTYz","avatar_url":"https://avatars1.githubusercontent.com/u/49365563?v=4","gravatar_id":"","url":"https://api.github.com/users/siraiwaqarali","html_url":"https://github.com/siraiwaqarali","followers_url":"https://api.github.com/users/siraiwaqarali/followers","following_url":"https://api.github.com/users/siraiwaqarali/following{/other_user}","gists_url":"https://api.github.com/users/siraiwaqarali/gists{/gist_id}","starred_url":"https://api.github.com/users/siraiwaqarali/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/siraiwaqarali/subscriptions","organizations_url":"https://api.github.com/users/siraiwaqarali/orgs","repos_url":"https://api.github.com/users/siraiwaqarali/repos","events_url":"https://api.github.com/users/siraiwaqarali/events{/privacy}","received_events_url":"https://api.github.com/users/siraiwaqarali/received_events","type":"User","site_admin":false},"repo":{"id":305710397,"node_id":"MDEwOlJlcG9zaXRvcnkzMDU3MTAzOTc=","name":"Learn-to-code-java","full_name":"siraiwaqarali/Learn-to-code-java","private":false,"owner":{"login":"siraiwaqarali","id":49365563,"node_id":"MDQ6VXNlcjQ5MzY1NTYz","avatar_url":"https://avatars1.githubusercontent.com/u/49365563?v=4","gravatar_id":"","url":"https://api.github.com/users/siraiwaqarali","html_url":"https://github.com/siraiwaqarali","followers_url":"https://api.github.com/users/siraiwaqarali/followers","following_url":"https://api.github.com/users/siraiwaqarali/following{/other_user}","gists_url":"https://api.github.com/users/siraiwaqarali/gists{/gist_id}","starred_url":"https://api.github.com/users/siraiwaqarali/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/siraiwaqarali/subscriptions","organizations_url":"https://api.github.com/users/siraiwaqarali/orgs","repos_url":"https://api.github.com/users/siraiwaqarali/repos","events_url":"https://api.github.com/users/siraiwaqarali/events{/privacy}","received_events_url":"https://api.github.com/users/siraiwaqarali/received_events","type":"User","site_admin":false},"html_url":"https://github.com/siraiwaqarali/Learn-to-code-java","description":"This repository is the initiative of MLSA Club MUET Jamshoro to teach Java to absolute beginners. ","fork":true,"url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java","forks_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/forks","keys_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/keys{/key_id}","collaborators_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/teams","hooks_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/hooks","issue_events_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/issues/events{/number}","events_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/events","assignees_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/assignees{/user}","branches_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/branches{/branch}","tags_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/tags","blobs_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/git/refs{/sha}","trees_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/git/trees{/sha}","statuses_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/statuses/{sha}","languages_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/languages","stargazers_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/stargazers","contributors_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/contributors","subscribers_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/subscribers","subscription_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/subscription","commits_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/commits{/sha}","git_commits_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/git/commits{/sha}","comments_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/comments{/number}","issue_comment_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/issues/comments{/number}","contents_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/contents/{+path}","compare_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/compare/{base}...{head}","merges_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/merges","archive_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/downloads","issues_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/issues{/number}","pulls_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/pulls{/number}","milestones_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/milestones{/number}","notifications_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/labels{/name}","releases_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/releases{/id}","deployments_url":"https://api.github.com/repos/siraiwaqarali/Learn-to-code-java/deployments","created_at":"2020-10-20T13:05:30Z","updated_at":"2020-10-20T13:05:32Z","pushed_at":"2020-10-20T13:55:27Z","git_url":"git://github.com/siraiwaqarali/Learn-to-code-java.git","ssh_url":"[email protected]:siraiwaqarali/Learn-to-code-java.git","clone_url":"https://github.com/siraiwaqarali/Learn-to-code-java.git","svn_url":"https://github.com/siraiwaqarali/Learn-to-code-java","homepage":"","size":8918,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"forks":0,"open_issues":0,"watchers":0,"default_branch":"main"}},"base":{"label":"MLSA-Mehran-UET:main","ref":"main","sha":"42498e7122cfbf7c51029dc01da020215afb4806","user":{"login":"MLSA-Mehran-UET","id":71189195,"node_id":"MDEyOk9yZ2FuaXphdGlvbjcxMTg5MTk1","avatar_url":"https://avatars2.githubusercontent.com/u/71189195?v=4","gravatar_id":"","url":"https://api.github.com/users/MLSA-Mehran-UET","html_url":"https://github.com/MLSA-Mehran-UET","followers_url":"https://api.github.com/users/MLSA-Mehran-UET/followers","following_url":"https://api.github.com/users/MLSA-Mehran-UET/following{/other_user}","gists_url":"https://api.github.com/users/MLSA-Mehran-UET/gists{/gist_id}","starred_url":"https://api.github.com/users/MLSA-Mehran-UET/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MLSA-Mehran-UET/subscriptions","organizations_url":"https://api.github.com/users/MLSA-Mehran-UET/orgs","repos_url":"https://api.github.com/users/MLSA-Mehran-UET/repos","events_url":"https://api.github.com/users/MLSA-Mehran-UET/events{/privacy}","received_events_url":"https://api.github.com/users/MLSA-Mehran-UET/received_events","type":"Organization","site_admin":false},"repo":{"id":303045883,"node_id":"MDEwOlJlcG9zaXRvcnkzMDMwNDU4ODM=","name":"Learn-to-code-java","full_name":"MLSA-Mehran-UET/Learn-to-code-java","private":false,"owner":{"login":"MLSA-Mehran-UET","id":71189195,"node_id":"MDEyOk9yZ2FuaXphdGlvbjcxMTg5MTk1","avatar_url":"https://avatars2.githubusercontent.com/u/71189195?v=4","gravatar_id":"","url":"https://api.github.com/users/MLSA-Mehran-UET","html_url":"https://github.com/MLSA-Mehran-UET","followers_url":"https://api.github.com/users/MLSA-Mehran-UET/followers","following_url":"https://api.github.com/users/MLSA-Mehran-UET/following{/other_user}","gists_url":"https://api.github.com/users/MLSA-Mehran-UET/gists{/gist_id}","starred_url":"https://api.github.com/users/MLSA-Mehran-UET/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/MLSA-Mehran-UET/subscriptions","organizations_url":"https://api.github.com/users/MLSA-Mehran-UET/orgs","repos_url":"https://api.github.com/users/MLSA-Mehran-UET/repos","events_url":"https://api.github.com/users/MLSA-Mehran-UET/events{/privacy}","received_events_url":"https://api.github.com/users/MLSA-Mehran-UET/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/MLSA-Mehran-UET/Learn-to-code-java","description":"This repository is the initiative of MLSA Club MUET Jamshoro to teach Java to absolute beginners. ","fork":false,"url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java","forks_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/forks","keys_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/keys{/key_id}","collaborators_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/teams","hooks_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/hooks","issue_events_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/issues/events{/number}","events_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/events","assignees_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/assignees{/user}","branches_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/branches{/branch}","tags_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/tags","blobs_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/git/refs{/sha}","trees_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/git/trees{/sha}","statuses_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/statuses/{sha}","languages_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/languages","stargazers_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/stargazers","contributors_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/contributors","subscribers_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/subscribers","subscription_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/subscription","commits_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/commits{/sha}","git_commits_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/git/commits{/sha}","comments_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/comments{/number}","issue_comment_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/issues/comments{/number}","contents_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/contents/{+path}","compare_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/compare/{base}...{head}","merges_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/merges","archive_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/downloads","issues_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/issues{/number}","pulls_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/pulls{/number}","milestones_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/milestones{/number}","notifications_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/labels{/name}","releases_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/releases{/id}","deployments_url":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/deployments","created_at":"2020-10-11T05:01:39Z","updated_at":"2020-10-20T12:51:33Z","pushed_at":"2020-10-20T13:53:40Z","git_url":"git://github.com/MLSA-Mehran-UET/Learn-to-code-java.git","ssh_url":"[email protected]:MLSA-Mehran-UET/Learn-to-code-java.git","clone_url":"https://github.com/MLSA-Mehran-UET/Learn-to-code-java.git","svn_url":"https://github.com/MLSA-Mehran-UET/Learn-to-code-java","homepage":"","size":8918,"stargazers_count":11,"watchers_count":11,"language":"Java","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":30,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":26,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"forks":30,"open_issues":26,"watchers":11,"default_branch":"main"}},"_links":{"self":{"href":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/pulls/117"},"html":{"href":"https://github.com/MLSA-Mehran-UET/Learn-to-code-java/pull/117"},"issue":{"href":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/issues/117"},"comments":{"href":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/issues/117/comments"},"review_comments":{"href":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/pulls/117/comments"},"review_comment":{"href":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/pulls/117/commits"},"statuses":{"href":"https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java/statuses/85c53968ba29c3e41e540d2816627f03de53a29e"}},"author_association":"CONTRIBUTOR","active_lock_reason":null,"merged":false,"mergeable":null,"rebaseable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"maintainer_can_modify":true,"commits":4,"additions":1347,"deletions":0,"changed_files":25}}
|
{
"id": 303045883,
"name": "MLSA-Mehran-UET/Learn-to-code-java",
"url": "https://api.github.com/repos/MLSA-Mehran-UET/Learn-to-code-java"
}
|
{
"id": 49365563,
"login": "siraiwaqarali",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/49365563?",
"url": "https://api.github.com/users/siraiwaqarali"
}
|
{
"id": 71189195,
"login": "MLSA-Mehran-UET",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/71189195?",
"url": "https://api.github.com/orgs/MLSA-Mehran-UET"
}
| 2020-10-20T13:55:40
|
13908539133
|
{"actor":{"display_login":"siraiwaqarali"}}
|
CreateEvent
| true
|
{"ref":null,"ref_type":"repository","master_branch":"master","description":null,"pusher_type":"user"}
|
{
"id": 306224555,
"name": "direwolf-github/ephemeral-ci-37a57d61",
"url": "https://api.github.com/repos/direwolf-github/ephemeral-ci-37a57d61"
}
|
{
"id": 10810283,
"login": "direwolf-github",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/10810283?",
"url": "https://api.github.com/users/direwolf-github"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-10-22T04:43:08
|
13931238716
|
{"actor":{"display_login":"direwolf-github"}}
|
PullRequestReviewEvent
| true
|
{"action":"created","review":{"id":514688084,"node_id":"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3NTE0Njg4MDg0","user":{"login":"chaitanyaenr","id":14077093,"node_id":"MDQ6VXNlcjE0MDc3MDkz","avatar_url":"https://avatars1.githubusercontent.com/u/14077093?v=4","gravatar_id":"","url":"https://api.github.com/users/chaitanyaenr","html_url":"https://github.com/chaitanyaenr","followers_url":"https://api.github.com/users/chaitanyaenr/followers","following_url":"https://api.github.com/users/chaitanyaenr/following{/other_user}","gists_url":"https://api.github.com/users/chaitanyaenr/gists{/gist_id}","starred_url":"https://api.github.com/users/chaitanyaenr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chaitanyaenr/subscriptions","organizations_url":"https://api.github.com/users/chaitanyaenr/orgs","repos_url":"https://api.github.com/users/chaitanyaenr/repos","events_url":"https://api.github.com/users/chaitanyaenr/events{/privacy}","received_events_url":"https://api.github.com/users/chaitanyaenr/received_events","type":"User","site_admin":false},"body":null,"commit_id":"7a444c909fce62554bb40f8928c39f04a82d397f","submitted_at":"2020-10-22T12:50:10Z","state":"commented","html_url":"https://github.com/openshift-scale/scale-ci-pipeline/pull/122#pullrequestreview-514688084","pull_request_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/pulls/122","author_association":"MEMBER","_links":{"html":{"href":"https://github.com/openshift-scale/scale-ci-pipeline/pull/122#pullrequestreview-514688084"},"pull_request":{"href":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/pulls/122"}}},"pull_request":{"url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/pulls/122","id":507818222,"node_id":"MDExOlB1bGxSZXF1ZXN0NTA3ODE4MjIy","html_url":"https://github.com/openshift-scale/scale-ci-pipeline/pull/122","diff_url":"https://github.com/openshift-scale/scale-ci-pipeline/pull/122.diff","patch_url":"https://github.com/openshift-scale/scale-ci-pipeline/pull/122.patch","issue_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/issues/122","number":122,"state":"open","locked":false,"title":"use benchmark-operator for scale job","user":{"login":"mohit-sheth","id":53906986,"node_id":"MDQ6VXNlcjUzOTA2OTg2","avatar_url":"https://avatars2.githubusercontent.com/u/53906986?v=4","gravatar_id":"","url":"https://api.github.com/users/mohit-sheth","html_url":"https://github.com/mohit-sheth","followers_url":"https://api.github.com/users/mohit-sheth/followers","following_url":"https://api.github.com/users/mohit-sheth/following{/other_user}","gists_url":"https://api.github.com/users/mohit-sheth/gists{/gist_id}","starred_url":"https://api.github.com/users/mohit-sheth/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mohit-sheth/subscriptions","organizations_url":"https://api.github.com/users/mohit-sheth/orgs","repos_url":"https://api.github.com/users/mohit-sheth/repos","events_url":"https://api.github.com/users/mohit-sheth/events{/privacy}","received_events_url":"https://api.github.com/users/mohit-sheth/received_events","type":"User","site_admin":false},"body":"moving from https://github.com/openshift-scale/workloads/blob/master/workloads/scale.yml to https://github.com/cloud-bulldozer/e2e-benchmarking/tree/master/workloads/scale-perf","created_at":"2020-10-21T19:38:19Z","updated_at":"2020-10-22T12:50:10Z","closed_at":null,"merged_at":null,"merge_commit_sha":"947fc1b0f0ebcf9fee62bfb388f17618f1a5db6b","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/pulls/122/commits","review_comments_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/pulls/122/comments","review_comment_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/pulls/comments{/number}","comments_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/issues/122/comments","statuses_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/statuses/7a444c909fce62554bb40f8928c39f04a82d397f","head":{"label":"mohit-sheth:scale_ripsaw","ref":"scale_ripsaw","sha":"7a444c909fce62554bb40f8928c39f04a82d397f","user":{"login":"mohit-sheth","id":53906986,"node_id":"MDQ6VXNlcjUzOTA2OTg2","avatar_url":"https://avatars2.githubusercontent.com/u/53906986?v=4","gravatar_id":"","url":"https://api.github.com/users/mohit-sheth","html_url":"https://github.com/mohit-sheth","followers_url":"https://api.github.com/users/mohit-sheth/followers","following_url":"https://api.github.com/users/mohit-sheth/following{/other_user}","gists_url":"https://api.github.com/users/mohit-sheth/gists{/gist_id}","starred_url":"https://api.github.com/users/mohit-sheth/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mohit-sheth/subscriptions","organizations_url":"https://api.github.com/users/mohit-sheth/orgs","repos_url":"https://api.github.com/users/mohit-sheth/repos","events_url":"https://api.github.com/users/mohit-sheth/events{/privacy}","received_events_url":"https://api.github.com/users/mohit-sheth/received_events","type":"User","site_admin":false},"repo":{"id":232339556,"node_id":"MDEwOlJlcG9zaXRvcnkyMzIzMzk1NTY=","name":"scale-ci-pipeline","full_name":"mohit-sheth/scale-ci-pipeline","private":false,"owner":{"login":"mohit-sheth","id":53906986,"node_id":"MDQ6VXNlcjUzOTA2OTg2","avatar_url":"https://avatars2.githubusercontent.com/u/53906986?v=4","gravatar_id":"","url":"https://api.github.com/users/mohit-sheth","html_url":"https://github.com/mohit-sheth","followers_url":"https://api.github.com/users/mohit-sheth/followers","following_url":"https://api.github.com/users/mohit-sheth/following{/other_user}","gists_url":"https://api.github.com/users/mohit-sheth/gists{/gist_id}","starred_url":"https://api.github.com/users/mohit-sheth/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mohit-sheth/subscriptions","organizations_url":"https://api.github.com/users/mohit-sheth/orgs","repos_url":"https://api.github.com/users/mohit-sheth/repos","events_url":"https://api.github.com/users/mohit-sheth/events{/privacy}","received_events_url":"https://api.github.com/users/mohit-sheth/received_events","type":"User","site_admin":false},"html_url":"https://github.com/mohit-sheth/scale-ci-pipeline","description":"Automation to install, configure and scale test OpenShift and onboard new workloads","fork":true,"url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline","forks_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/forks","keys_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/teams","hooks_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/hooks","issue_events_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/issues/events{/number}","events_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/events","assignees_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/assignees{/user}","branches_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/branches{/branch}","tags_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/tags","blobs_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/git/refs{/sha}","trees_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/statuses/{sha}","languages_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/languages","stargazers_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/stargazers","contributors_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/contributors","subscribers_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/subscribers","subscription_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/subscription","commits_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/commits{/sha}","git_commits_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/git/commits{/sha}","comments_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/comments{/number}","issue_comment_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/issues/comments{/number}","contents_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/contents/{+path}","compare_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/merges","archive_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/downloads","issues_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/issues{/number}","pulls_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/pulls{/number}","milestones_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/milestones{/number}","notifications_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/labels{/name}","releases_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/releases{/id}","deployments_url":"https://api.github.com/repos/mohit-sheth/scale-ci-pipeline/deployments","created_at":"2020-01-07T14:15:59Z","updated_at":"2020-10-09T16:15:40Z","pushed_at":"2020-10-21T19:46:57Z","git_url":"git://github.com/mohit-sheth/scale-ci-pipeline.git","ssh_url":"[email protected]:mohit-sheth/scale-ci-pipeline.git","clone_url":"https://github.com/mohit-sheth/scale-ci-pipeline.git","svn_url":"https://github.com/mohit-sheth/scale-ci-pipeline","homepage":"","size":637,"stargazers_count":0,"watchers_count":0,"language":"Groovy","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"openshift-scale:master","ref":"master","sha":"d0e90e7ac8fd592cdb526f21a126c932e3e919fa","user":{"login":"openshift-scale","id":49765465,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5NzY1NDY1","avatar_url":"https://avatars3.githubusercontent.com/u/49765465?v=4","gravatar_id":"","url":"https://api.github.com/users/openshift-scale","html_url":"https://github.com/openshift-scale","followers_url":"https://api.github.com/users/openshift-scale/followers","following_url":"https://api.github.com/users/openshift-scale/following{/other_user}","gists_url":"https://api.github.com/users/openshift-scale/gists{/gist_id}","starred_url":"https://api.github.com/users/openshift-scale/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/openshift-scale/subscriptions","organizations_url":"https://api.github.com/users/openshift-scale/orgs","repos_url":"https://api.github.com/users/openshift-scale/repos","events_url":"https://api.github.com/users/openshift-scale/events{/privacy}","received_events_url":"https://api.github.com/users/openshift-scale/received_events","type":"Organization","site_admin":false},"repo":{"id":189444097,"node_id":"MDEwOlJlcG9zaXRvcnkxODk0NDQwOTc=","name":"scale-ci-pipeline","full_name":"openshift-scale/scale-ci-pipeline","private":false,"owner":{"login":"openshift-scale","id":49765465,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ5NzY1NDY1","avatar_url":"https://avatars3.githubusercontent.com/u/49765465?v=4","gravatar_id":"","url":"https://api.github.com/users/openshift-scale","html_url":"https://github.com/openshift-scale","followers_url":"https://api.github.com/users/openshift-scale/followers","following_url":"https://api.github.com/users/openshift-scale/following{/other_user}","gists_url":"https://api.github.com/users/openshift-scale/gists{/gist_id}","starred_url":"https://api.github.com/users/openshift-scale/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/openshift-scale/subscriptions","organizations_url":"https://api.github.com/users/openshift-scale/orgs","repos_url":"https://api.github.com/users/openshift-scale/repos","events_url":"https://api.github.com/users/openshift-scale/events{/privacy}","received_events_url":"https://api.github.com/users/openshift-scale/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/openshift-scale/scale-ci-pipeline","description":"Automation to install, configure, scale test OpenShift and onboard new workloads","fork":false,"url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline","forks_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/forks","keys_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/keys{/key_id}","collaborators_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/teams","hooks_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/hooks","issue_events_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/issues/events{/number}","events_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/events","assignees_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/assignees{/user}","branches_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/branches{/branch}","tags_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/tags","blobs_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/git/refs{/sha}","trees_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/git/trees{/sha}","statuses_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/statuses/{sha}","languages_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/languages","stargazers_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/stargazers","contributors_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/contributors","subscribers_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/subscribers","subscription_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/subscription","commits_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/commits{/sha}","git_commits_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/git/commits{/sha}","comments_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/comments{/number}","issue_comment_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/issues/comments{/number}","contents_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/contents/{+path}","compare_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/compare/{base}...{head}","merges_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/merges","archive_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/downloads","issues_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/issues{/number}","pulls_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/pulls{/number}","milestones_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/milestones{/number}","notifications_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/labels{/name}","releases_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/releases{/id}","deployments_url":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/deployments","created_at":"2019-05-30T16:07:56Z","updated_at":"2020-10-09T16:20:32Z","pushed_at":"2020-10-21T19:46:59Z","git_url":"git://github.com/openshift-scale/scale-ci-pipeline.git","ssh_url":"[email protected]:openshift-scale/scale-ci-pipeline.git","clone_url":"https://github.com/openshift-scale/scale-ci-pipeline.git","svn_url":"https://github.com/openshift-scale/scale-ci-pipeline","homepage":"","size":618,"stargazers_count":14,"watchers_count":14,"language":"Groovy","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":14,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":19,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"forks":14,"open_issues":19,"watchers":14,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/pulls/122"},"html":{"href":"https://github.com/openshift-scale/scale-ci-pipeline/pull/122"},"issue":{"href":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/issues/122"},"comments":{"href":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/issues/122/comments"},"review_comments":{"href":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/pulls/122/comments"},"review_comment":{"href":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/pulls/122/commits"},"statuses":{"href":"https://api.github.com/repos/openshift-scale/scale-ci-pipeline/statuses/7a444c909fce62554bb40f8928c39f04a82d397f"}},"author_association":"CONTRIBUTOR","active_lock_reason":null}}
|
{
"id": 189444097,
"name": "openshift-scale/scale-ci-pipeline",
"url": "https://api.github.com/repos/openshift-scale/scale-ci-pipeline"
}
|
{
"id": 14077093,
"login": "chaitanyaenr",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/14077093?",
"url": "https://api.github.com/users/chaitanyaenr"
}
|
{
"id": 49765465,
"login": "openshift-scale",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/49765465?",
"url": "https://api.github.com/orgs/openshift-scale"
}
| 2020-10-22T12:50:10
|
13936353519
|
{"actor":{"display_login":"chaitanyaenr"}}
|
PullRequestReviewEvent
| true
|
{"action":"created","review":{"id":513852127,"node_id":"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3NTEzODUyMTI3","user":{"login":"iguannago","id":3930991,"node_id":"MDQ6VXNlcjM5MzA5OTE=","avatar_url":"https://avatars2.githubusercontent.com/u/3930991?v=4","gravatar_id":"","url":"https://api.github.com/users/iguannago","html_url":"https://github.com/iguannago","followers_url":"https://api.github.com/users/iguannago/followers","following_url":"https://api.github.com/users/iguannago/following{/other_user}","gists_url":"https://api.github.com/users/iguannago/gists{/gist_id}","starred_url":"https://api.github.com/users/iguannago/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/iguannago/subscriptions","organizations_url":"https://api.github.com/users/iguannago/orgs","repos_url":"https://api.github.com/users/iguannago/repos","events_url":"https://api.github.com/users/iguannago/events{/privacy}","received_events_url":"https://api.github.com/users/iguannago/received_events","type":"User","site_admin":false},"body":null,"commit_id":"0683ca4ed98d393b3fa04e29ded9de993bc73602","submitted_at":"2020-10-21T16:04:07Z","state":"commented","html_url":"https://github.com/hmcts/ia-ccd-e2e-tests/pull/337#pullrequestreview-513852127","pull_request_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/pulls/337","author_association":"CONTRIBUTOR","_links":{"html":{"href":"https://github.com/hmcts/ia-ccd-e2e-tests/pull/337#pullrequestreview-513852127"},"pull_request":{"href":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/pulls/337"}}},"pull_request":{"url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/pulls/337","id":507654523,"node_id":"MDExOlB1bGxSZXF1ZXN0NTA3NjU0NTIz","html_url":"https://github.com/hmcts/ia-ccd-e2e-tests/pull/337","diff_url":"https://github.com/hmcts/ia-ccd-e2e-tests/pull/337.diff","patch_url":"https://github.com/hmcts/ia-ccd-e2e-tests/pull/337.patch","issue_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/issues/337","number":337,"state":"open","locked":false,"title":"RWA-137 Allocate a case to me","user":{"login":"chrisgrimble","id":845103,"node_id":"MDQ6VXNlcjg0NTEwMw==","avatar_url":"https://avatars3.githubusercontent.com/u/845103?v=4","gravatar_id":"","url":"https://api.github.com/users/chrisgrimble","html_url":"https://github.com/chrisgrimble","followers_url":"https://api.github.com/users/chrisgrimble/followers","following_url":"https://api.github.com/users/chrisgrimble/following{/other_user}","gists_url":"https://api.github.com/users/chrisgrimble/gists{/gist_id}","starred_url":"https://api.github.com/users/chrisgrimble/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/chrisgrimble/subscriptions","organizations_url":"https://api.github.com/users/chrisgrimble/orgs","repos_url":"https://api.github.com/users/chrisgrimble/repos","events_url":"https://api.github.com/users/chrisgrimble/events{/privacy}","received_events_url":"https://api.github.com/users/chrisgrimble/received_events","type":"User","site_admin":false},"body":"Test for allocating a case to me\r\n\r\n### JIRA link (if applicable) ###\r\n\r\nhttps://tools.hmcts.net/jira/browse/RWA-137\r\n\r\n**Does this PR introduce a breaking change?** (check one with \"x\")\r\n\r\n```\r\n[ ] Yes\r\n[X] No\r\n```\r\n","created_at":"2020-10-21T15:47:07Z","updated_at":"2020-10-21T16:04:07Z","closed_at":null,"merged_at":null,"merge_commit_sha":"7d33ae516e62ab4edead5f16559cfbc99c77fd26","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/pulls/337/commits","review_comments_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/pulls/337/comments","review_comment_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/pulls/comments{/number}","comments_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/issues/337/comments","statuses_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/statuses/0683ca4ed98d393b3fa04e29ded9de993bc73602","head":{"label":"hmcts:RWA-137-Allocate_case_to_me","ref":"RWA-137-Allocate_case_to_me","sha":"0683ca4ed98d393b3fa04e29ded9de993bc73602","user":{"login":"hmcts","id":22817111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjIyODE3MTEx","avatar_url":"https://avatars1.githubusercontent.com/u/22817111?v=4","gravatar_id":"","url":"https://api.github.com/users/hmcts","html_url":"https://github.com/hmcts","followers_url":"https://api.github.com/users/hmcts/followers","following_url":"https://api.github.com/users/hmcts/following{/other_user}","gists_url":"https://api.github.com/users/hmcts/gists{/gist_id}","starred_url":"https://api.github.com/users/hmcts/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hmcts/subscriptions","organizations_url":"https://api.github.com/users/hmcts/orgs","repos_url":"https://api.github.com/users/hmcts/repos","events_url":"https://api.github.com/users/hmcts/events{/privacy}","received_events_url":"https://api.github.com/users/hmcts/received_events","type":"Organization","site_admin":false},"repo":{"id":153487128,"node_id":"MDEwOlJlcG9zaXRvcnkxNTM0ODcxMjg=","name":"ia-ccd-e2e-tests","full_name":"hmcts/ia-ccd-e2e-tests","private":false,"owner":{"login":"hmcts","id":22817111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjIyODE3MTEx","avatar_url":"https://avatars1.githubusercontent.com/u/22817111?v=4","gravatar_id":"","url":"https://api.github.com/users/hmcts","html_url":"https://github.com/hmcts","followers_url":"https://api.github.com/users/hmcts/followers","following_url":"https://api.github.com/users/hmcts/following{/other_user}","gists_url":"https://api.github.com/users/hmcts/gists{/gist_id}","starred_url":"https://api.github.com/users/hmcts/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hmcts/subscriptions","organizations_url":"https://api.github.com/users/hmcts/orgs","repos_url":"https://api.github.com/users/hmcts/repos","events_url":"https://api.github.com/users/hmcts/events{/privacy}","received_events_url":"https://api.github.com/users/hmcts/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/hmcts/ia-ccd-e2e-tests","description":"Immigration & Asylum CCD E2E tests","fork":false,"url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests","forks_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/forks","keys_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/keys{/key_id}","collaborators_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/teams","hooks_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/hooks","issue_events_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/issues/events{/number}","events_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/events","assignees_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/assignees{/user}","branches_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/branches{/branch}","tags_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/tags","blobs_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/git/refs{/sha}","trees_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/git/trees{/sha}","statuses_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/statuses/{sha}","languages_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/languages","stargazers_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/stargazers","contributors_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/contributors","subscribers_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/subscribers","subscription_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/subscription","commits_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/commits{/sha}","git_commits_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/git/commits{/sha}","comments_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/comments{/number}","issue_comment_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/issues/comments{/number}","contents_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/contents/{+path}","compare_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/compare/{base}...{head}","merges_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/merges","archive_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/downloads","issues_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/issues{/number}","pulls_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/pulls{/number}","milestones_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/milestones{/number}","notifications_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/labels{/name}","releases_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/releases{/id}","deployments_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/deployments","created_at":"2018-10-17T16:14:38Z","updated_at":"2020-10-21T11:13:43Z","pushed_at":"2020-10-21T15:47:08Z","git_url":"git://github.com/hmcts/ia-ccd-e2e-tests.git","ssh_url":"[email protected]:hmcts/ia-ccd-e2e-tests.git","clone_url":"https://github.com/hmcts/ia-ccd-e2e-tests.git","svn_url":"https://github.com/hmcts/ia-ccd-e2e-tests","homepage":"","size":2533,"stargazers_count":3,"watchers_count":3,"language":"Gherkin","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":33,"license":null,"forks":0,"open_issues":33,"watchers":3,"default_branch":"master"}},"base":{"label":"hmcts:master","ref":"master","sha":"29c56a760fbc82a184ba00600157c16376ce06b9","user":{"login":"hmcts","id":22817111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjIyODE3MTEx","avatar_url":"https://avatars1.githubusercontent.com/u/22817111?v=4","gravatar_id":"","url":"https://api.github.com/users/hmcts","html_url":"https://github.com/hmcts","followers_url":"https://api.github.com/users/hmcts/followers","following_url":"https://api.github.com/users/hmcts/following{/other_user}","gists_url":"https://api.github.com/users/hmcts/gists{/gist_id}","starred_url":"https://api.github.com/users/hmcts/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hmcts/subscriptions","organizations_url":"https://api.github.com/users/hmcts/orgs","repos_url":"https://api.github.com/users/hmcts/repos","events_url":"https://api.github.com/users/hmcts/events{/privacy}","received_events_url":"https://api.github.com/users/hmcts/received_events","type":"Organization","site_admin":false},"repo":{"id":153487128,"node_id":"MDEwOlJlcG9zaXRvcnkxNTM0ODcxMjg=","name":"ia-ccd-e2e-tests","full_name":"hmcts/ia-ccd-e2e-tests","private":false,"owner":{"login":"hmcts","id":22817111,"node_id":"MDEyOk9yZ2FuaXphdGlvbjIyODE3MTEx","avatar_url":"https://avatars1.githubusercontent.com/u/22817111?v=4","gravatar_id":"","url":"https://api.github.com/users/hmcts","html_url":"https://github.com/hmcts","followers_url":"https://api.github.com/users/hmcts/followers","following_url":"https://api.github.com/users/hmcts/following{/other_user}","gists_url":"https://api.github.com/users/hmcts/gists{/gist_id}","starred_url":"https://api.github.com/users/hmcts/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/hmcts/subscriptions","organizations_url":"https://api.github.com/users/hmcts/orgs","repos_url":"https://api.github.com/users/hmcts/repos","events_url":"https://api.github.com/users/hmcts/events{/privacy}","received_events_url":"https://api.github.com/users/hmcts/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/hmcts/ia-ccd-e2e-tests","description":"Immigration & Asylum CCD E2E tests","fork":false,"url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests","forks_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/forks","keys_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/keys{/key_id}","collaborators_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/teams","hooks_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/hooks","issue_events_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/issues/events{/number}","events_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/events","assignees_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/assignees{/user}","branches_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/branches{/branch}","tags_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/tags","blobs_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/git/refs{/sha}","trees_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/git/trees{/sha}","statuses_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/statuses/{sha}","languages_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/languages","stargazers_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/stargazers","contributors_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/contributors","subscribers_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/subscribers","subscription_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/subscription","commits_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/commits{/sha}","git_commits_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/git/commits{/sha}","comments_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/comments{/number}","issue_comment_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/issues/comments{/number}","contents_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/contents/{+path}","compare_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/compare/{base}...{head}","merges_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/merges","archive_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/downloads","issues_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/issues{/number}","pulls_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/pulls{/number}","milestones_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/milestones{/number}","notifications_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/labels{/name}","releases_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/releases{/id}","deployments_url":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/deployments","created_at":"2018-10-17T16:14:38Z","updated_at":"2020-10-21T11:13:43Z","pushed_at":"2020-10-21T15:47:08Z","git_url":"git://github.com/hmcts/ia-ccd-e2e-tests.git","ssh_url":"[email protected]:hmcts/ia-ccd-e2e-tests.git","clone_url":"https://github.com/hmcts/ia-ccd-e2e-tests.git","svn_url":"https://github.com/hmcts/ia-ccd-e2e-tests","homepage":"","size":2533,"stargazers_count":3,"watchers_count":3,"language":"Gherkin","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":33,"license":null,"forks":0,"open_issues":33,"watchers":3,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/pulls/337"},"html":{"href":"https://github.com/hmcts/ia-ccd-e2e-tests/pull/337"},"issue":{"href":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/issues/337"},"comments":{"href":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/issues/337/comments"},"review_comments":{"href":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/pulls/337/comments"},"review_comment":{"href":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/pulls/337/commits"},"statuses":{"href":"https://api.github.com/repos/hmcts/ia-ccd-e2e-tests/statuses/0683ca4ed98d393b3fa04e29ded9de993bc73602"}},"author_association":"CONTRIBUTOR","active_lock_reason":null}}
|
{
"id": 153487128,
"name": "hmcts/ia-ccd-e2e-tests",
"url": "https://api.github.com/repos/hmcts/ia-ccd-e2e-tests"
}
|
{
"id": 3930991,
"login": "iguannago",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/3930991?",
"url": "https://api.github.com/users/iguannago"
}
|
{
"id": 22817111,
"login": "hmcts",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/22817111?",
"url": "https://api.github.com/orgs/hmcts"
}
| 2020-10-21T16:04:07
|
13924853574
|
{"actor":{"display_login":"iguannago"}}
|
ForkEvent
| true
|
{"forkee":{"id":287150965,"node_id":"MDEwOlJlcG9zaXRvcnkyODcxNTA5NjU=","name":"pis_study","full_name":"bingbingpa/pis_study","private":false,"owner":{"login":"bingbingpa","id":6446144,"node_id":"MDQ6VXNlcjY0NDYxNDQ=","avatar_url":"https://avatars3.githubusercontent.com/u/6446144?v=4","gravatar_id":"","url":"https://api.github.com/users/bingbingpa","html_url":"https://github.com/bingbingpa","followers_url":"https://api.github.com/users/bingbingpa/followers","following_url":"https://api.github.com/users/bingbingpa/following{/other_user}","gists_url":"https://api.github.com/users/bingbingpa/gists{/gist_id}","starred_url":"https://api.github.com/users/bingbingpa/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/bingbingpa/subscriptions","organizations_url":"https://api.github.com/users/bingbingpa/orgs","repos_url":"https://api.github.com/users/bingbingpa/repos","events_url":"https://api.github.com/users/bingbingpa/events{/privacy}","received_events_url":"https://api.github.com/users/bingbingpa/received_events","type":"User","site_admin":false},"html_url":"https://github.com/bingbingpa/pis_study","description":"pyimagesearch 스터디","fork":true,"url":"https://api.github.com/repos/bingbingpa/pis_study","forks_url":"https://api.github.com/repos/bingbingpa/pis_study/forks","keys_url":"https://api.github.com/repos/bingbingpa/pis_study/keys{/key_id}","collaborators_url":"https://api.github.com/repos/bingbingpa/pis_study/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/bingbingpa/pis_study/teams","hooks_url":"https://api.github.com/repos/bingbingpa/pis_study/hooks","issue_events_url":"https://api.github.com/repos/bingbingpa/pis_study/issues/events{/number}","events_url":"https://api.github.com/repos/bingbingpa/pis_study/events","assignees_url":"https://api.github.com/repos/bingbingpa/pis_study/assignees{/user}","branches_url":"https://api.github.com/repos/bingbingpa/pis_study/branches{/branch}","tags_url":"https://api.github.com/repos/bingbingpa/pis_study/tags","blobs_url":"https://api.github.com/repos/bingbingpa/pis_study/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/bingbingpa/pis_study/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/bingbingpa/pis_study/git/refs{/sha}","trees_url":"https://api.github.com/repos/bingbingpa/pis_study/git/trees{/sha}","statuses_url":"https://api.github.com/repos/bingbingpa/pis_study/statuses/{sha}","languages_url":"https://api.github.com/repos/bingbingpa/pis_study/languages","stargazers_url":"https://api.github.com/repos/bingbingpa/pis_study/stargazers","contributors_url":"https://api.github.com/repos/bingbingpa/pis_study/contributors","subscribers_url":"https://api.github.com/repos/bingbingpa/pis_study/subscribers","subscription_url":"https://api.github.com/repos/bingbingpa/pis_study/subscription","commits_url":"https://api.github.com/repos/bingbingpa/pis_study/commits{/sha}","git_commits_url":"https://api.github.com/repos/bingbingpa/pis_study/git/commits{/sha}","comments_url":"https://api.github.com/repos/bingbingpa/pis_study/comments{/number}","issue_comment_url":"https://api.github.com/repos/bingbingpa/pis_study/issues/comments{/number}","contents_url":"https://api.github.com/repos/bingbingpa/pis_study/contents/{+path}","compare_url":"https://api.github.com/repos/bingbingpa/pis_study/compare/{base}...{head}","merges_url":"https://api.github.com/repos/bingbingpa/pis_study/merges","archive_url":"https://api.github.com/repos/bingbingpa/pis_study/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/bingbingpa/pis_study/downloads","issues_url":"https://api.github.com/repos/bingbingpa/pis_study/issues{/number}","pulls_url":"https://api.github.com/repos/bingbingpa/pis_study/pulls{/number}","milestones_url":"https://api.github.com/repos/bingbingpa/pis_study/milestones{/number}","notifications_url":"https://api.github.com/repos/bingbingpa/pis_study/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/bingbingpa/pis_study/labels{/name}","releases_url":"https://api.github.com/repos/bingbingpa/pis_study/releases{/id}","deployments_url":"https://api.github.com/repos/bingbingpa/pis_study/deployments","created_at":"2020-08-13T01:21:53Z","updated_at":"2020-08-12T10:55:53Z","pushed_at":"2020-08-12T10:55:51Z","git_url":"git://github.com/bingbingpa/pis_study.git","ssh_url":"[email protected]:bingbingpa/pis_study.git","clone_url":"https://github.com/bingbingpa/pis_study.git","svn_url":"https://github.com/bingbingpa/pis_study","homepage":null,"size":425469,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":null,"forks":0,"open_issues":0,"watchers":0,"default_branch":"master","public":true}}
|
{
"id": 267791620,
"name": "dhrim/pis_study",
"url": "https://api.github.com/repos/dhrim/pis_study"
}
|
{
"id": 6446144,
"login": "bingbingpa",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6446144?",
"url": "https://api.github.com/users/bingbingpa"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-08-13T01:21:54
|
13186801656
|
{"actor":{"display_login":"bingbingpa"}}
|
PushEvent
| true
|
{"push_id":5378280859,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"ceb889849ae90e9eac440e00f1b895ae6cff7cde","before":"dd81574a0d247a9532ec7d3c272978bd60bb2df5","commits":[{"sha":"ceb889849ae90e9eac440e00f1b895ae6cff7cde","author":{"name":"MOHAMMED SHINE N","email":"7f0ca8637b52357866e06eee1adee9c1df7e1e5a@users.noreply.github.com"},"message":"Update README.md","distinct":true,"url":"https://api.github.com/repos/SHINE1607/kaggle_cardekho/commits/ceb889849ae90e9eac440e00f1b895ae6cff7cde"}]}
|
{
"id": 277115750,
"name": "SHINE1607/kaggle_cardekho",
"url": "https://api.github.com/repos/SHINE1607/kaggle_cardekho"
}
|
{
"id": 40365028,
"login": "SHINE1607",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/40365028?",
"url": "https://api.github.com/users/SHINE1607"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-07-15T14:36:41
|
12912654449
|
{"actor":{"display_login":"SHINE1607"}}
|
CreateEvent
| true
|
{"ref":"main","ref_type":"branch","master_branch":"main","description":null,"pusher_type":"user"}
|
{
"id": 308038257,
"name": "Sourajitsaha/Vegetable-Collector-Project",
"url": "https://api.github.com/repos/Sourajitsaha/Vegetable-Collector-Project"
}
|
{
"id": 69388504,
"login": "Sourajitsaha",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/69388504?",
"url": "https://api.github.com/users/Sourajitsaha"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-10-28T14:16:47
|
14001977575
|
{"actor":{"display_login":"Sourajitsaha"}}
|
PushEvent
| true
|
{"push_id":5886596364,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"1a6ca72aad49b700feba20317a0ce8da6f407435","before":"60f9ce2992b27361b55a75faefd7d14b31421d40","commits":[{"sha":"1a6ca72aad49b700feba20317a0ce8da6f407435","author":{"name":"MozMEAO Bot","email":"[email protected]"},"message":"Update files from l10n repo","distinct":true,"url":"https://api.github.com/repos/mozmeao/www-l10n/commits/1a6ca72aad49b700feba20317a0ce8da6f407435"}]}
|
{
"id": 208111663,
"name": "mozmeao/www-l10n",
"url": "https://api.github.com/repos/mozmeao/www-l10n"
}
|
{
"id": 21087069,
"login": "MozmarRobot",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/21087069?",
"url": "https://api.github.com/users/MozmarRobot"
}
|
{
"id": 17653958,
"login": "mozmeao",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/17653958?",
"url": "https://api.github.com/orgs/mozmeao"
}
| 2020-10-20T12:26:12
|
13907295260
|
{"actor":{"display_login":"MozmarRobot"}}
|
PushEvent
| true
|
{"push_id":5884017698,"size":1,"distinct_size":1,"ref":"refs/heads/2020_3","head":"977fb7bfe2992611dccf1770c8579c8470aad59a","before":"a3bfd117266b903699a9619c3124f00552b228f7","commits":[{"sha":"977fb7bfe2992611dccf1770c8579c8470aad59a","author":{"name":"myreaderx33","email":"b730b18f5e652ae18adb7754d3cb8bad7a87cabb@users.noreply.github.com"},"message":"2020-10-20 04:29:25 upload files","distinct":true,"url":"https://api.github.com/repos/myreaderx33/cdn69/commits/977fb7bfe2992611dccf1770c8579c8470aad59a"}]}
|
{
"id": 288473963,
"name": "myreaderx33/cdn69",
"url": "https://api.github.com/repos/myreaderx33/cdn69"
}
|
{
"id": 69857428,
"login": "myreaderx33",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/69857428?",
"url": "https://api.github.com/users/myreaderx33"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-10-20T04:29:26
|
13902073479
|
{"actor":{"display_login":"myreaderx33"}}
|
WatchEvent
| true
|
{"action":"started"}
|
{
"id": 281043560,
"name": "hkiang01/version-upper",
"url": "https://api.github.com/repos/hkiang01/version-upper"
}
|
{
"id": 10731890,
"login": "kenEldridge",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/10731890?",
"url": "https://api.github.com/users/kenEldridge"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-07-24T14:48:44
|
13007475470
|
{"actor":{"display_login":"kenEldridge"}}
|
PullRequestEvent
| true
|
{"action":"opened","number":17,"pull_request":{"url":"https://api.github.com/repos/AnnaSu/annasu-blog/pulls/17","id":506347156,"node_id":"MDExOlB1bGxSZXF1ZXN0NTA2MzQ3MTU2","html_url":"https://github.com/AnnaSu/annasu-blog/pull/17","diff_url":"https://github.com/AnnaSu/annasu-blog/pull/17.diff","patch_url":"https://github.com/AnnaSu/annasu-blog/pull/17.patch","issue_url":"https://api.github.com/repos/AnnaSu/annasu-blog/issues/17","number":17,"state":"open","locked":false,"title":"chore(deps): bump object-path from 0.11.4 to 0.11.5","user":{"login":"dependabot[bot]","id":49699333,"node_id":"MDM6Qm90NDk2OTkzMzM=","avatar_url":"https://avatars0.githubusercontent.com/in/29110?v=4","gravatar_id":"","url":"https://api.github.com/users/dependabot%5Bbot%5D","html_url":"https://github.com/apps/dependabot","followers_url":"https://api.github.com/users/dependabot%5Bbot%5D/followers","following_url":"https://api.github.com/users/dependabot%5Bbot%5D/following{/other_user}","gists_url":"https://api.github.com/users/dependabot%5Bbot%5D/gists{/gist_id}","starred_url":"https://api.github.com/users/dependabot%5Bbot%5D/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dependabot%5Bbot%5D/subscriptions","organizations_url":"https://api.github.com/users/dependabot%5Bbot%5D/orgs","repos_url":"https://api.github.com/users/dependabot%5Bbot%5D/repos","events_url":"https://api.github.com/users/dependabot%5Bbot%5D/events{/privacy}","received_events_url":"https://api.github.com/users/dependabot%5Bbot%5D/received_events","type":"Bot","site_admin":false},"body":"Bumps [object-path](https://github.com/mariocasciaro/object-path) from 0.11.4 to 0.11.5.\n<details>\n<summary>Commits</summary>\n<ul>\n<li>See full diff in <a href=\"https://github.com/mariocasciaro/object-path/commits\">compare view</a></li>\n</ul>\n</details>\n<br />\n\n\n[](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n<details>\n<summary>Dependabot commands and options</summary>\n<br />\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language\n- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language\n- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language\n- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language\n\nYou can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/AnnaSu/annasu-blog/network/alerts).\n\n</details>","created_at":"2020-10-19T23:44:05Z","updated_at":"2020-10-19T23:44:05Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/AnnaSu/annasu-blog/pulls/17/commits","review_comments_url":"https://api.github.com/repos/AnnaSu/annasu-blog/pulls/17/comments","review_comment_url":"https://api.github.com/repos/AnnaSu/annasu-blog/pulls/comments{/number}","comments_url":"https://api.github.com/repos/AnnaSu/annasu-blog/issues/17/comments","statuses_url":"https://api.github.com/repos/AnnaSu/annasu-blog/statuses/485f191ee8bda321ae0b8071b8a8f869e31af99b","head":{"label":"AnnaSu:dependabot/npm_and_yarn/object-path-0.11.5","ref":"dependabot/npm_and_yarn/object-path-0.11.5","sha":"485f191ee8bda321ae0b8071b8a8f869e31af99b","user":{"login":"AnnaSu","id":1781049,"node_id":"MDQ6VXNlcjE3ODEwNDk=","avatar_url":"https://avatars3.githubusercontent.com/u/1781049?v=4","gravatar_id":"","url":"https://api.github.com/users/AnnaSu","html_url":"https://github.com/AnnaSu","followers_url":"https://api.github.com/users/AnnaSu/followers","following_url":"https://api.github.com/users/AnnaSu/following{/other_user}","gists_url":"https://api.github.com/users/AnnaSu/gists{/gist_id}","starred_url":"https://api.github.com/users/AnnaSu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AnnaSu/subscriptions","organizations_url":"https://api.github.com/users/AnnaSu/orgs","repos_url":"https://api.github.com/users/AnnaSu/repos","events_url":"https://api.github.com/users/AnnaSu/events{/privacy}","received_events_url":"https://api.github.com/users/AnnaSu/received_events","type":"User","site_admin":false},"repo":{"id":182085703,"node_id":"MDEwOlJlcG9zaXRvcnkxODIwODU3MDM=","name":"annasu-blog","full_name":"AnnaSu/annasu-blog","private":false,"owner":{"login":"AnnaSu","id":1781049,"node_id":"MDQ6VXNlcjE3ODEwNDk=","avatar_url":"https://avatars3.githubusercontent.com/u/1781049?v=4","gravatar_id":"","url":"https://api.github.com/users/AnnaSu","html_url":"https://github.com/AnnaSu","followers_url":"https://api.github.com/users/AnnaSu/followers","following_url":"https://api.github.com/users/AnnaSu/following{/other_user}","gists_url":"https://api.github.com/users/AnnaSu/gists{/gist_id}","starred_url":"https://api.github.com/users/AnnaSu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AnnaSu/subscriptions","organizations_url":"https://api.github.com/users/AnnaSu/orgs","repos_url":"https://api.github.com/users/AnnaSu/repos","events_url":"https://api.github.com/users/AnnaSu/events{/privacy}","received_events_url":"https://api.github.com/users/AnnaSu/received_events","type":"User","site_admin":false},"html_url":"https://github.com/AnnaSu/annasu-blog","description":null,"fork":false,"url":"https://api.github.com/repos/AnnaSu/annasu-blog","forks_url":"https://api.github.com/repos/AnnaSu/annasu-blog/forks","keys_url":"https://api.github.com/repos/AnnaSu/annasu-blog/keys{/key_id}","collaborators_url":"https://api.github.com/repos/AnnaSu/annasu-blog/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/AnnaSu/annasu-blog/teams","hooks_url":"https://api.github.com/repos/AnnaSu/annasu-blog/hooks","issue_events_url":"https://api.github.com/repos/AnnaSu/annasu-blog/issues/events{/number}","events_url":"https://api.github.com/repos/AnnaSu/annasu-blog/events","assignees_url":"https://api.github.com/repos/AnnaSu/annasu-blog/assignees{/user}","branches_url":"https://api.github.com/repos/AnnaSu/annasu-blog/branches{/branch}","tags_url":"https://api.github.com/repos/AnnaSu/annasu-blog/tags","blobs_url":"https://api.github.com/repos/AnnaSu/annasu-blog/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/AnnaSu/annasu-blog/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/AnnaSu/annasu-blog/git/refs{/sha}","trees_url":"https://api.github.com/repos/AnnaSu/annasu-blog/git/trees{/sha}","statuses_url":"https://api.github.com/repos/AnnaSu/annasu-blog/statuses/{sha}","languages_url":"https://api.github.com/repos/AnnaSu/annasu-blog/languages","stargazers_url":"https://api.github.com/repos/AnnaSu/annasu-blog/stargazers","contributors_url":"https://api.github.com/repos/AnnaSu/annasu-blog/contributors","subscribers_url":"https://api.github.com/repos/AnnaSu/annasu-blog/subscribers","subscription_url":"https://api.github.com/repos/AnnaSu/annasu-blog/subscription","commits_url":"https://api.github.com/repos/AnnaSu/annasu-blog/commits{/sha}","git_commits_url":"https://api.github.com/repos/AnnaSu/annasu-blog/git/commits{/sha}","comments_url":"https://api.github.com/repos/AnnaSu/annasu-blog/comments{/number}","issue_comment_url":"https://api.github.com/repos/AnnaSu/annasu-blog/issues/comments{/number}","contents_url":"https://api.github.com/repos/AnnaSu/annasu-blog/contents/{+path}","compare_url":"https://api.github.com/repos/AnnaSu/annasu-blog/compare/{base}...{head}","merges_url":"https://api.github.com/repos/AnnaSu/annasu-blog/merges","archive_url":"https://api.github.com/repos/AnnaSu/annasu-blog/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/AnnaSu/annasu-blog/downloads","issues_url":"https://api.github.com/repos/AnnaSu/annasu-blog/issues{/number}","pulls_url":"https://api.github.com/repos/AnnaSu/annasu-blog/pulls{/number}","milestones_url":"https://api.github.com/repos/AnnaSu/annasu-blog/milestones{/number}","notifications_url":"https://api.github.com/repos/AnnaSu/annasu-blog/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/AnnaSu/annasu-blog/labels{/name}","releases_url":"https://api.github.com/repos/AnnaSu/annasu-blog/releases{/id}","deployments_url":"https://api.github.com/repos/AnnaSu/annasu-blog/deployments","created_at":"2019-04-18T12:41:46Z","updated_at":"2020-07-10T07:29:56Z","pushed_at":"2020-10-19T23:44:05Z","git_url":"git://github.com/AnnaSu/annasu-blog.git","ssh_url":"[email protected]:AnnaSu/annasu-blog.git","clone_url":"https://github.com/AnnaSu/annasu-blog.git","svn_url":"https://github.com/AnnaSu/annasu-blog","homepage":null,"size":13870,"stargazers_count":2,"watchers_count":2,"language":"JavaScript","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":15,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"forks":0,"open_issues":15,"watchers":2,"default_branch":"master"}},"base":{"label":"AnnaSu:master","ref":"master","sha":"f99f379ff606f3c02e10d7caf87f3ecc6ded37e4","user":{"login":"AnnaSu","id":1781049,"node_id":"MDQ6VXNlcjE3ODEwNDk=","avatar_url":"https://avatars3.githubusercontent.com/u/1781049?v=4","gravatar_id":"","url":"https://api.github.com/users/AnnaSu","html_url":"https://github.com/AnnaSu","followers_url":"https://api.github.com/users/AnnaSu/followers","following_url":"https://api.github.com/users/AnnaSu/following{/other_user}","gists_url":"https://api.github.com/users/AnnaSu/gists{/gist_id}","starred_url":"https://api.github.com/users/AnnaSu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AnnaSu/subscriptions","organizations_url":"https://api.github.com/users/AnnaSu/orgs","repos_url":"https://api.github.com/users/AnnaSu/repos","events_url":"https://api.github.com/users/AnnaSu/events{/privacy}","received_events_url":"https://api.github.com/users/AnnaSu/received_events","type":"User","site_admin":false},"repo":{"id":182085703,"node_id":"MDEwOlJlcG9zaXRvcnkxODIwODU3MDM=","name":"annasu-blog","full_name":"AnnaSu/annasu-blog","private":false,"owner":{"login":"AnnaSu","id":1781049,"node_id":"MDQ6VXNlcjE3ODEwNDk=","avatar_url":"https://avatars3.githubusercontent.com/u/1781049?v=4","gravatar_id":"","url":"https://api.github.com/users/AnnaSu","html_url":"https://github.com/AnnaSu","followers_url":"https://api.github.com/users/AnnaSu/followers","following_url":"https://api.github.com/users/AnnaSu/following{/other_user}","gists_url":"https://api.github.com/users/AnnaSu/gists{/gist_id}","starred_url":"https://api.github.com/users/AnnaSu/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AnnaSu/subscriptions","organizations_url":"https://api.github.com/users/AnnaSu/orgs","repos_url":"https://api.github.com/users/AnnaSu/repos","events_url":"https://api.github.com/users/AnnaSu/events{/privacy}","received_events_url":"https://api.github.com/users/AnnaSu/received_events","type":"User","site_admin":false},"html_url":"https://github.com/AnnaSu/annasu-blog","description":null,"fork":false,"url":"https://api.github.com/repos/AnnaSu/annasu-blog","forks_url":"https://api.github.com/repos/AnnaSu/annasu-blog/forks","keys_url":"https://api.github.com/repos/AnnaSu/annasu-blog/keys{/key_id}","collaborators_url":"https://api.github.com/repos/AnnaSu/annasu-blog/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/AnnaSu/annasu-blog/teams","hooks_url":"https://api.github.com/repos/AnnaSu/annasu-blog/hooks","issue_events_url":"https://api.github.com/repos/AnnaSu/annasu-blog/issues/events{/number}","events_url":"https://api.github.com/repos/AnnaSu/annasu-blog/events","assignees_url":"https://api.github.com/repos/AnnaSu/annasu-blog/assignees{/user}","branches_url":"https://api.github.com/repos/AnnaSu/annasu-blog/branches{/branch}","tags_url":"https://api.github.com/repos/AnnaSu/annasu-blog/tags","blobs_url":"https://api.github.com/repos/AnnaSu/annasu-blog/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/AnnaSu/annasu-blog/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/AnnaSu/annasu-blog/git/refs{/sha}","trees_url":"https://api.github.com/repos/AnnaSu/annasu-blog/git/trees{/sha}","statuses_url":"https://api.github.com/repos/AnnaSu/annasu-blog/statuses/{sha}","languages_url":"https://api.github.com/repos/AnnaSu/annasu-blog/languages","stargazers_url":"https://api.github.com/repos/AnnaSu/annasu-blog/stargazers","contributors_url":"https://api.github.com/repos/AnnaSu/annasu-blog/contributors","subscribers_url":"https://api.github.com/repos/AnnaSu/annasu-blog/subscribers","subscription_url":"https://api.github.com/repos/AnnaSu/annasu-blog/subscription","commits_url":"https://api.github.com/repos/AnnaSu/annasu-blog/commits{/sha}","git_commits_url":"https://api.github.com/repos/AnnaSu/annasu-blog/git/commits{/sha}","comments_url":"https://api.github.com/repos/AnnaSu/annasu-blog/comments{/number}","issue_comment_url":"https://api.github.com/repos/AnnaSu/annasu-blog/issues/comments{/number}","contents_url":"https://api.github.com/repos/AnnaSu/annasu-blog/contents/{+path}","compare_url":"https://api.github.com/repos/AnnaSu/annasu-blog/compare/{base}...{head}","merges_url":"https://api.github.com/repos/AnnaSu/annasu-blog/merges","archive_url":"https://api.github.com/repos/AnnaSu/annasu-blog/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/AnnaSu/annasu-blog/downloads","issues_url":"https://api.github.com/repos/AnnaSu/annasu-blog/issues{/number}","pulls_url":"https://api.github.com/repos/AnnaSu/annasu-blog/pulls{/number}","milestones_url":"https://api.github.com/repos/AnnaSu/annasu-blog/milestones{/number}","notifications_url":"https://api.github.com/repos/AnnaSu/annasu-blog/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/AnnaSu/annasu-blog/labels{/name}","releases_url":"https://api.github.com/repos/AnnaSu/annasu-blog/releases{/id}","deployments_url":"https://api.github.com/repos/AnnaSu/annasu-blog/deployments","created_at":"2019-04-18T12:41:46Z","updated_at":"2020-07-10T07:29:56Z","pushed_at":"2020-10-19T23:44:05Z","git_url":"git://github.com/AnnaSu/annasu-blog.git","ssh_url":"[email protected]:AnnaSu/annasu-blog.git","clone_url":"https://github.com/AnnaSu/annasu-blog.git","svn_url":"https://github.com/AnnaSu/annasu-blog","homepage":null,"size":13870,"stargazers_count":2,"watchers_count":2,"language":"JavaScript","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":15,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"forks":0,"open_issues":15,"watchers":2,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/AnnaSu/annasu-blog/pulls/17"},"html":{"href":"https://github.com/AnnaSu/annasu-blog/pull/17"},"issue":{"href":"https://api.github.com/repos/AnnaSu/annasu-blog/issues/17"},"comments":{"href":"https://api.github.com/repos/AnnaSu/annasu-blog/issues/17/comments"},"review_comments":{"href":"https://api.github.com/repos/AnnaSu/annasu-blog/pulls/17/comments"},"review_comment":{"href":"https://api.github.com/repos/AnnaSu/annasu-blog/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/AnnaSu/annasu-blog/pulls/17/commits"},"statuses":{"href":"https://api.github.com/repos/AnnaSu/annasu-blog/statuses/485f191ee8bda321ae0b8071b8a8f869e31af99b"}},"author_association":"NONE","active_lock_reason":null,"merged":false,"mergeable":null,"rebaseable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"maintainer_can_modify":false,"commits":1,"additions":22501,"deletions":7376,"changed_files":2}}
|
{
"id": 182085703,
"name": "AnnaSu/annasu-blog",
"url": "https://api.github.com/repos/AnnaSu/annasu-blog"
}
|
{
"id": 49699333,
"login": "dependabot[bot]",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/49699333?",
"url": "https://api.github.com/users/dependabot[bot]"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-10-19T23:44:06
|
13900204953
|
{"actor":{"display_login":"dependabot"}}
|
PullRequestReviewCommentEvent
| true
|
{"action":"created","comment":{"url":"https://api.github.com/repos/opensuspect/opensuspect/pulls/comments/507893804","pull_request_review_id":511950988,"id":507893804,"node_id":"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDUwNzg5MzgwNA==","diff_hunk":"@@ -0,0 +1,2 @@\n+2020/10/19 12:26:16 Micro started\n+2020/10/19 12:26:16 monokai-dark is not a plugin","path":"log.txt","position":2,"original_position":2,"commit_id":"152794789b56003cfb559c3394152a6a21c8e44d","original_commit_id":"152794789b56003cfb559c3394152a6a21c8e44d","user":{"login":"vainiovano","id":16741932,"node_id":"MDQ6VXNlcjE2NzQxOTMy","avatar_url":"https://avatars2.githubusercontent.com/u/16741932?v=4","gravatar_id":"","url":"https://api.github.com/users/vainiovano","html_url":"https://github.com/vainiovano","followers_url":"https://api.github.com/users/vainiovano/followers","following_url":"https://api.github.com/users/vainiovano/following{/other_user}","gists_url":"https://api.github.com/users/vainiovano/gists{/gist_id}","starred_url":"https://api.github.com/users/vainiovano/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vainiovano/subscriptions","organizations_url":"https://api.github.com/users/vainiovano/orgs","repos_url":"https://api.github.com/users/vainiovano/repos","events_url":"https://api.github.com/users/vainiovano/events{/privacy}","received_events_url":"https://api.github.com/users/vainiovano/received_events","type":"User","site_admin":false},"body":"What is this?","created_at":"2020-10-19T16:35:17Z","updated_at":"2020-10-19T16:35:17Z","html_url":"https://github.com/opensuspect/opensuspect/pull/121#discussion_r507893804","pull_request_url":"https://api.github.com/repos/opensuspect/opensuspect/pulls/121","author_association":"CONTRIBUTOR","_links":{"self":{"href":"https://api.github.com/repos/opensuspect/opensuspect/pulls/comments/507893804"},"html":{"href":"https://github.com/opensuspect/opensuspect/pull/121#discussion_r507893804"},"pull_request":{"href":"https://api.github.com/repos/opensuspect/opensuspect/pulls/121"}},"start_line":1,"original_start_line":1,"start_side":"RIGHT","line":2,"original_line":2,"side":"RIGHT"},"pull_request":{"url":"https://api.github.com/repos/opensuspect/opensuspect/pulls/121","id":506113465,"node_id":"MDExOlB1bGxSZXF1ZXN0NTA2MTEzNDY1","html_url":"https://github.com/opensuspect/opensuspect/pull/121","diff_url":"https://github.com/opensuspect/opensuspect/pull/121.diff","patch_url":"https://github.com/opensuspect/opensuspect/pull/121.patch","issue_url":"https://api.github.com/repos/opensuspect/opensuspect/issues/121","number":121,"state":"open","locked":false,"title":"Changed README just a little","user":{"login":"orangemn6","id":60720126,"node_id":"MDQ6VXNlcjYwNzIwMTI2","avatar_url":"https://avatars0.githubusercontent.com/u/60720126?v=4","gravatar_id":"","url":"https://api.github.com/users/orangemn6","html_url":"https://github.com/orangemn6","followers_url":"https://api.github.com/users/orangemn6/followers","following_url":"https://api.github.com/users/orangemn6/following{/other_user}","gists_url":"https://api.github.com/users/orangemn6/gists{/gist_id}","starred_url":"https://api.github.com/users/orangemn6/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/orangemn6/subscriptions","organizations_url":"https://api.github.com/users/orangemn6/orgs","repos_url":"https://api.github.com/users/orangemn6/repos","events_url":"https://api.github.com/users/orangemn6/events{/privacy}","received_events_url":"https://api.github.com/users/orangemn6/received_events","type":"User","site_admin":false},"body":"","created_at":"2020-10-19T16:31:54Z","updated_at":"2020-10-19T16:35:17Z","closed_at":null,"merged_at":null,"merge_commit_sha":"f3ef473f7db591862c03c63b38ebed3f685e24a7","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/opensuspect/opensuspect/pulls/121/commits","review_comments_url":"https://api.github.com/repos/opensuspect/opensuspect/pulls/121/comments","review_comment_url":"https://api.github.com/repos/opensuspect/opensuspect/pulls/comments{/number}","comments_url":"https://api.github.com/repos/opensuspect/opensuspect/issues/121/comments","statuses_url":"https://api.github.com/repos/opensuspect/opensuspect/statuses/152794789b56003cfb559c3394152a6a21c8e44d","head":{"label":"orangemn6:fork","ref":"fork","sha":"152794789b56003cfb559c3394152a6a21c8e44d","user":{"login":"orangemn6","id":60720126,"node_id":"MDQ6VXNlcjYwNzIwMTI2","avatar_url":"https://avatars0.githubusercontent.com/u/60720126?v=4","gravatar_id":"","url":"https://api.github.com/users/orangemn6","html_url":"https://github.com/orangemn6","followers_url":"https://api.github.com/users/orangemn6/followers","following_url":"https://api.github.com/users/orangemn6/following{/other_user}","gists_url":"https://api.github.com/users/orangemn6/gists{/gist_id}","starred_url":"https://api.github.com/users/orangemn6/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/orangemn6/subscriptions","organizations_url":"https://api.github.com/users/orangemn6/orgs","repos_url":"https://api.github.com/users/orangemn6/repos","events_url":"https://api.github.com/users/orangemn6/events{/privacy}","received_events_url":"https://api.github.com/users/orangemn6/received_events","type":"User","site_admin":false},"repo":{"id":305445362,"node_id":"MDEwOlJlcG9zaXRvcnkzMDU0NDUzNjI=","name":"opensuspect","full_name":"orangemn6/opensuspect","private":false,"owner":{"login":"orangemn6","id":60720126,"node_id":"MDQ6VXNlcjYwNzIwMTI2","avatar_url":"https://avatars0.githubusercontent.com/u/60720126?v=4","gravatar_id":"","url":"https://api.github.com/users/orangemn6","html_url":"https://github.com/orangemn6","followers_url":"https://api.github.com/users/orangemn6/followers","following_url":"https://api.github.com/users/orangemn6/following{/other_user}","gists_url":"https://api.github.com/users/orangemn6/gists{/gist_id}","starred_url":"https://api.github.com/users/orangemn6/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/orangemn6/subscriptions","organizations_url":"https://api.github.com/users/orangemn6/orgs","repos_url":"https://api.github.com/users/orangemn6/repos","events_url":"https://api.github.com/users/orangemn6/events{/privacy}","received_events_url":"https://api.github.com/users/orangemn6/received_events","type":"User","site_admin":false},"html_url":"https://github.com/orangemn6/opensuspect","description":null,"fork":true,"url":"https://api.github.com/repos/orangemn6/opensuspect","forks_url":"https://api.github.com/repos/orangemn6/opensuspect/forks","keys_url":"https://api.github.com/repos/orangemn6/opensuspect/keys{/key_id}","collaborators_url":"https://api.github.com/repos/orangemn6/opensuspect/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/orangemn6/opensuspect/teams","hooks_url":"https://api.github.com/repos/orangemn6/opensuspect/hooks","issue_events_url":"https://api.github.com/repos/orangemn6/opensuspect/issues/events{/number}","events_url":"https://api.github.com/repos/orangemn6/opensuspect/events","assignees_url":"https://api.github.com/repos/orangemn6/opensuspect/assignees{/user}","branches_url":"https://api.github.com/repos/orangemn6/opensuspect/branches{/branch}","tags_url":"https://api.github.com/repos/orangemn6/opensuspect/tags","blobs_url":"https://api.github.com/repos/orangemn6/opensuspect/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/orangemn6/opensuspect/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/orangemn6/opensuspect/git/refs{/sha}","trees_url":"https://api.github.com/repos/orangemn6/opensuspect/git/trees{/sha}","statuses_url":"https://api.github.com/repos/orangemn6/opensuspect/statuses/{sha}","languages_url":"https://api.github.com/repos/orangemn6/opensuspect/languages","stargazers_url":"https://api.github.com/repos/orangemn6/opensuspect/stargazers","contributors_url":"https://api.github.com/repos/orangemn6/opensuspect/contributors","subscribers_url":"https://api.github.com/repos/orangemn6/opensuspect/subscribers","subscription_url":"https://api.github.com/repos/orangemn6/opensuspect/subscription","commits_url":"https://api.github.com/repos/orangemn6/opensuspect/commits{/sha}","git_commits_url":"https://api.github.com/repos/orangemn6/opensuspect/git/commits{/sha}","comments_url":"https://api.github.com/repos/orangemn6/opensuspect/comments{/number}","issue_comment_url":"https://api.github.com/repos/orangemn6/opensuspect/issues/comments{/number}","contents_url":"https://api.github.com/repos/orangemn6/opensuspect/contents/{+path}","compare_url":"https://api.github.com/repos/orangemn6/opensuspect/compare/{base}...{head}","merges_url":"https://api.github.com/repos/orangemn6/opensuspect/merges","archive_url":"https://api.github.com/repos/orangemn6/opensuspect/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/orangemn6/opensuspect/downloads","issues_url":"https://api.github.com/repos/orangemn6/opensuspect/issues{/number}","pulls_url":"https://api.github.com/repos/orangemn6/opensuspect/pulls{/number}","milestones_url":"https://api.github.com/repos/orangemn6/opensuspect/milestones{/number}","notifications_url":"https://api.github.com/repos/orangemn6/opensuspect/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/orangemn6/opensuspect/labels{/name}","releases_url":"https://api.github.com/repos/orangemn6/opensuspect/releases{/id}","deployments_url":"https://api.github.com/repos/orangemn6/opensuspect/deployments","created_at":"2020-10-19T16:24:53Z","updated_at":"2020-10-19T16:24:55Z","pushed_at":"2020-10-19T16:29:05Z","git_url":"git://github.com/orangemn6/opensuspect.git","ssh_url":"[email protected]:orangemn6/opensuspect.git","clone_url":"https://github.com/orangemn6/opensuspect.git","svn_url":"https://github.com/orangemn6/opensuspect","homepage":null,"size":15958,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"gpl-3.0","name":"GNU General Public License v3.0","spdx_id":"GPL-3.0","url":"https://api.github.com/licenses/gpl-3.0","node_id":"MDc6TGljZW5zZTk="},"forks":0,"open_issues":0,"watchers":0,"default_branch":"main"}},"base":{"label":"opensuspect:main","ref":"main","sha":"e842c21577bc124e4fdf4463f9cbb59031b2b177","user":{"login":"opensuspect","id":72677473,"node_id":"MDEyOk9yZ2FuaXphdGlvbjcyNjc3NDcz","avatar_url":"https://avatars2.githubusercontent.com/u/72677473?v=4","gravatar_id":"","url":"https://api.github.com/users/opensuspect","html_url":"https://github.com/opensuspect","followers_url":"https://api.github.com/users/opensuspect/followers","following_url":"https://api.github.com/users/opensuspect/following{/other_user}","gists_url":"https://api.github.com/users/opensuspect/gists{/gist_id}","starred_url":"https://api.github.com/users/opensuspect/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/opensuspect/subscriptions","organizations_url":"https://api.github.com/users/opensuspect/orgs","repos_url":"https://api.github.com/users/opensuspect/repos","events_url":"https://api.github.com/users/opensuspect/events{/privacy}","received_events_url":"https://api.github.com/users/opensuspect/received_events","type":"Organization","site_admin":false},"repo":{"id":302563506,"node_id":"MDEwOlJlcG9zaXRvcnkzMDI1NjM1MDY=","name":"opensuspect","full_name":"opensuspect/opensuspect","private":false,"owner":{"login":"opensuspect","id":72677473,"node_id":"MDEyOk9yZ2FuaXphdGlvbjcyNjc3NDcz","avatar_url":"https://avatars2.githubusercontent.com/u/72677473?v=4","gravatar_id":"","url":"https://api.github.com/users/opensuspect","html_url":"https://github.com/opensuspect","followers_url":"https://api.github.com/users/opensuspect/followers","following_url":"https://api.github.com/users/opensuspect/following{/other_user}","gists_url":"https://api.github.com/users/opensuspect/gists{/gist_id}","starred_url":"https://api.github.com/users/opensuspect/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/opensuspect/subscriptions","organizations_url":"https://api.github.com/users/opensuspect/orgs","repos_url":"https://api.github.com/users/opensuspect/repos","events_url":"https://api.github.com/users/opensuspect/events{/privacy}","received_events_url":"https://api.github.com/users/opensuspect/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/opensuspect/opensuspect","description":null,"fork":false,"url":"https://api.github.com/repos/opensuspect/opensuspect","forks_url":"https://api.github.com/repos/opensuspect/opensuspect/forks","keys_url":"https://api.github.com/repos/opensuspect/opensuspect/keys{/key_id}","collaborators_url":"https://api.github.com/repos/opensuspect/opensuspect/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/opensuspect/opensuspect/teams","hooks_url":"https://api.github.com/repos/opensuspect/opensuspect/hooks","issue_events_url":"https://api.github.com/repos/opensuspect/opensuspect/issues/events{/number}","events_url":"https://api.github.com/repos/opensuspect/opensuspect/events","assignees_url":"https://api.github.com/repos/opensuspect/opensuspect/assignees{/user}","branches_url":"https://api.github.com/repos/opensuspect/opensuspect/branches{/branch}","tags_url":"https://api.github.com/repos/opensuspect/opensuspect/tags","blobs_url":"https://api.github.com/repos/opensuspect/opensuspect/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/opensuspect/opensuspect/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/opensuspect/opensuspect/git/refs{/sha}","trees_url":"https://api.github.com/repos/opensuspect/opensuspect/git/trees{/sha}","statuses_url":"https://api.github.com/repos/opensuspect/opensuspect/statuses/{sha}","languages_url":"https://api.github.com/repos/opensuspect/opensuspect/languages","stargazers_url":"https://api.github.com/repos/opensuspect/opensuspect/stargazers","contributors_url":"https://api.github.com/repos/opensuspect/opensuspect/contributors","subscribers_url":"https://api.github.com/repos/opensuspect/opensuspect/subscribers","subscription_url":"https://api.github.com/repos/opensuspect/opensuspect/subscription","commits_url":"https://api.github.com/repos/opensuspect/opensuspect/commits{/sha}","git_commits_url":"https://api.github.com/repos/opensuspect/opensuspect/git/commits{/sha}","comments_url":"https://api.github.com/repos/opensuspect/opensuspect/comments{/number}","issue_comment_url":"https://api.github.com/repos/opensuspect/opensuspect/issues/comments{/number}","contents_url":"https://api.github.com/repos/opensuspect/opensuspect/contents/{+path}","compare_url":"https://api.github.com/repos/opensuspect/opensuspect/compare/{base}...{head}","merges_url":"https://api.github.com/repos/opensuspect/opensuspect/merges","archive_url":"https://api.github.com/repos/opensuspect/opensuspect/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/opensuspect/opensuspect/downloads","issues_url":"https://api.github.com/repos/opensuspect/opensuspect/issues{/number}","pulls_url":"https://api.github.com/repos/opensuspect/opensuspect/pulls{/number}","milestones_url":"https://api.github.com/repos/opensuspect/opensuspect/milestones{/number}","notifications_url":"https://api.github.com/repos/opensuspect/opensuspect/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/opensuspect/opensuspect/labels{/name}","releases_url":"https://api.github.com/repos/opensuspect/opensuspect/releases{/id}","deployments_url":"https://api.github.com/repos/opensuspect/opensuspect/deployments","created_at":"2020-10-09T07:16:54Z","updated_at":"2020-10-19T15:58:48Z","pushed_at":"2020-10-19T16:31:54Z","git_url":"git://github.com/opensuspect/opensuspect.git","ssh_url":"[email protected]:opensuspect/opensuspect.git","clone_url":"https://github.com/opensuspect/opensuspect.git","svn_url":"https://github.com/opensuspect/opensuspect","homepage":null,"size":15958,"stargazers_count":61,"watchers_count":61,"language":"GDScript","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":23,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":11,"license":{"key":"gpl-3.0","name":"GNU General Public License v3.0","spdx_id":"GPL-3.0","url":"https://api.github.com/licenses/gpl-3.0","node_id":"MDc6TGljZW5zZTk="},"forks":23,"open_issues":11,"watchers":61,"default_branch":"main"}},"_links":{"self":{"href":"https://api.github.com/repos/opensuspect/opensuspect/pulls/121"},"html":{"href":"https://github.com/opensuspect/opensuspect/pull/121"},"issue":{"href":"https://api.github.com/repos/opensuspect/opensuspect/issues/121"},"comments":{"href":"https://api.github.com/repos/opensuspect/opensuspect/issues/121/comments"},"review_comments":{"href":"https://api.github.com/repos/opensuspect/opensuspect/pulls/121/comments"},"review_comment":{"href":"https://api.github.com/repos/opensuspect/opensuspect/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/opensuspect/opensuspect/pulls/121/commits"},"statuses":{"href":"https://api.github.com/repos/opensuspect/opensuspect/statuses/152794789b56003cfb559c3394152a6a21c8e44d"}},"author_association":"MEMBER","active_lock_reason":null}}
|
{
"id": 302563506,
"name": "opensuspect/opensuspect",
"url": "https://api.github.com/repos/opensuspect/opensuspect"
}
|
{
"id": 16741932,
"login": "vainiovano",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/16741932?",
"url": "https://api.github.com/users/vainiovano"
}
|
{
"id": 72677473,
"login": "opensuspect",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/72677473?",
"url": "https://api.github.com/orgs/opensuspect"
}
| 2020-10-19T16:35:17
|
13896012296
|
{"actor":{"display_login":"vainiovano"}}
|
PushEvent
| true
|
{"push_id":5898436689,"size":0,"distinct_size":0,"ref":"refs/heads/master","head":"ea9631678b4845a1f4343ff42eb0fe98693738a1","before":"ea9631678b4845a1f4343ff42eb0fe98693738a1","commits":[]}
|
{
"id": 268533909,
"name": "mrabe89bot/wofi",
"url": "https://api.github.com/repos/mrabe89bot/wofi"
}
|
{
"id": 66259788,
"login": "mrabe89bot",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/66259788?",
"url": "https://api.github.com/users/mrabe89bot"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-10-22T05:11:00
|
13931406349
|
{"actor":{"display_login":"mrabe89bot"}}
|
PullRequestEvent
| true
|
{"action":"opened","number":2137,"pull_request":{"url":"https://api.github.com/repos/Scholar-6/brillder/pulls/2137","id":507420006,"node_id":"MDExOlB1bGxSZXF1ZXN0NTA3NDIwMDA2","html_url":"https://github.com/Scholar-6/brillder/pull/2137","diff_url":"https://github.com/Scholar-6/brillder/pull/2137.diff","patch_url":"https://github.com/Scholar-6/brillder/pull/2137.patch","issue_url":"https://api.github.com/repos/Scholar-6/brillder/issues/2137","number":2137,"state":"open","locked":false,"title":"Resolved #2098","user":{"login":"AminHussaini","id":59252100,"node_id":"MDQ6VXNlcjU5MjUyMTAw","avatar_url":"https://avatars2.githubusercontent.com/u/59252100?v=4","gravatar_id":"","url":"https://api.github.com/users/AminHussaini","html_url":"https://github.com/AminHussaini","followers_url":"https://api.github.com/users/AminHussaini/followers","following_url":"https://api.github.com/users/AminHussaini/following{/other_user}","gists_url":"https://api.github.com/users/AminHussaini/gists{/gist_id}","starred_url":"https://api.github.com/users/AminHussaini/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AminHussaini/subscriptions","organizations_url":"https://api.github.com/users/AminHussaini/orgs","repos_url":"https://api.github.com/users/AminHussaini/repos","events_url":"https://api.github.com/users/AminHussaini/events{/privacy}","received_events_url":"https://api.github.com/users/AminHussaini/received_events","type":"User","site_admin":false},"body":"","created_at":"2020-10-21T10:15:33Z","updated_at":"2020-10-21T10:15:33Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/Scholar-6/brillder/pulls/2137/commits","review_comments_url":"https://api.github.com/repos/Scholar-6/brillder/pulls/2137/comments","review_comment_url":"https://api.github.com/repos/Scholar-6/brillder/pulls/comments{/number}","comments_url":"https://api.github.com/repos/Scholar-6/brillder/issues/2137/comments","statuses_url":"https://api.github.com/repos/Scholar-6/brillder/statuses/e19d6cf52ab750e88d8a5acdb8166854ab0aaa78","head":{"label":"AminHussaini:amin_development","ref":"amin_development","sha":"e19d6cf52ab750e88d8a5acdb8166854ab0aaa78","user":{"login":"AminHussaini","id":59252100,"node_id":"MDQ6VXNlcjU5MjUyMTAw","avatar_url":"https://avatars2.githubusercontent.com/u/59252100?v=4","gravatar_id":"","url":"https://api.github.com/users/AminHussaini","html_url":"https://github.com/AminHussaini","followers_url":"https://api.github.com/users/AminHussaini/followers","following_url":"https://api.github.com/users/AminHussaini/following{/other_user}","gists_url":"https://api.github.com/users/AminHussaini/gists{/gist_id}","starred_url":"https://api.github.com/users/AminHussaini/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AminHussaini/subscriptions","organizations_url":"https://api.github.com/users/AminHussaini/orgs","repos_url":"https://api.github.com/users/AminHussaini/repos","events_url":"https://api.github.com/users/AminHussaini/events{/privacy}","received_events_url":"https://api.github.com/users/AminHussaini/received_events","type":"User","site_admin":false},"repo":{"id":274131418,"node_id":"MDEwOlJlcG9zaXRvcnkyNzQxMzE0MTg=","name":"brillder","full_name":"AminHussaini/brillder","private":false,"owner":{"login":"AminHussaini","id":59252100,"node_id":"MDQ6VXNlcjU5MjUyMTAw","avatar_url":"https://avatars2.githubusercontent.com/u/59252100?v=4","gravatar_id":"","url":"https://api.github.com/users/AminHussaini","html_url":"https://github.com/AminHussaini","followers_url":"https://api.github.com/users/AminHussaini/followers","following_url":"https://api.github.com/users/AminHussaini/following{/other_user}","gists_url":"https://api.github.com/users/AminHussaini/gists{/gist_id}","starred_url":"https://api.github.com/users/AminHussaini/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AminHussaini/subscriptions","organizations_url":"https://api.github.com/users/AminHussaini/orgs","repos_url":"https://api.github.com/users/AminHussaini/repos","events_url":"https://api.github.com/users/AminHussaini/events{/privacy}","received_events_url":"https://api.github.com/users/AminHussaini/received_events","type":"User","site_admin":false},"html_url":"https://github.com/AminHussaini/brillder","description":null,"fork":true,"url":"https://api.github.com/repos/AminHussaini/brillder","forks_url":"https://api.github.com/repos/AminHussaini/brillder/forks","keys_url":"https://api.github.com/repos/AminHussaini/brillder/keys{/key_id}","collaborators_url":"https://api.github.com/repos/AminHussaini/brillder/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/AminHussaini/brillder/teams","hooks_url":"https://api.github.com/repos/AminHussaini/brillder/hooks","issue_events_url":"https://api.github.com/repos/AminHussaini/brillder/issues/events{/number}","events_url":"https://api.github.com/repos/AminHussaini/brillder/events","assignees_url":"https://api.github.com/repos/AminHussaini/brillder/assignees{/user}","branches_url":"https://api.github.com/repos/AminHussaini/brillder/branches{/branch}","tags_url":"https://api.github.com/repos/AminHussaini/brillder/tags","blobs_url":"https://api.github.com/repos/AminHussaini/brillder/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/AminHussaini/brillder/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/AminHussaini/brillder/git/refs{/sha}","trees_url":"https://api.github.com/repos/AminHussaini/brillder/git/trees{/sha}","statuses_url":"https://api.github.com/repos/AminHussaini/brillder/statuses/{sha}","languages_url":"https://api.github.com/repos/AminHussaini/brillder/languages","stargazers_url":"https://api.github.com/repos/AminHussaini/brillder/stargazers","contributors_url":"https://api.github.com/repos/AminHussaini/brillder/contributors","subscribers_url":"https://api.github.com/repos/AminHussaini/brillder/subscribers","subscription_url":"https://api.github.com/repos/AminHussaini/brillder/subscription","commits_url":"https://api.github.com/repos/AminHussaini/brillder/commits{/sha}","git_commits_url":"https://api.github.com/repos/AminHussaini/brillder/git/commits{/sha}","comments_url":"https://api.github.com/repos/AminHussaini/brillder/comments{/number}","issue_comment_url":"https://api.github.com/repos/AminHussaini/brillder/issues/comments{/number}","contents_url":"https://api.github.com/repos/AminHussaini/brillder/contents/{+path}","compare_url":"https://api.github.com/repos/AminHussaini/brillder/compare/{base}...{head}","merges_url":"https://api.github.com/repos/AminHussaini/brillder/merges","archive_url":"https://api.github.com/repos/AminHussaini/brillder/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/AminHussaini/brillder/downloads","issues_url":"https://api.github.com/repos/AminHussaini/brillder/issues{/number}","pulls_url":"https://api.github.com/repos/AminHussaini/brillder/pulls{/number}","milestones_url":"https://api.github.com/repos/AminHussaini/brillder/milestones{/number}","notifications_url":"https://api.github.com/repos/AminHussaini/brillder/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/AminHussaini/brillder/labels{/name}","releases_url":"https://api.github.com/repos/AminHussaini/brillder/releases{/id}","deployments_url":"https://api.github.com/repos/AminHussaini/brillder/deployments","created_at":"2020-06-22T12:31:14Z","updated_at":"2020-06-22T12:31:15Z","pushed_at":"2020-10-21T10:13:27Z","git_url":"git://github.com/AminHussaini/brillder.git","ssh_url":"[email protected]:AminHussaini/brillder.git","clone_url":"https://github.com/AminHussaini/brillder.git","svn_url":"https://github.com/AminHussaini/brillder","homepage":null,"size":26285,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"Scholar-6:development","ref":"development","sha":"dec2f492ccb28ada251ceb1e6660c95d2ceea113","user":{"login":"Scholar-6","id":40640377,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQwNjQwMzc3","avatar_url":"https://avatars1.githubusercontent.com/u/40640377?v=4","gravatar_id":"","url":"https://api.github.com/users/Scholar-6","html_url":"https://github.com/Scholar-6","followers_url":"https://api.github.com/users/Scholar-6/followers","following_url":"https://api.github.com/users/Scholar-6/following{/other_user}","gists_url":"https://api.github.com/users/Scholar-6/gists{/gist_id}","starred_url":"https://api.github.com/users/Scholar-6/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Scholar-6/subscriptions","organizations_url":"https://api.github.com/users/Scholar-6/orgs","repos_url":"https://api.github.com/users/Scholar-6/repos","events_url":"https://api.github.com/users/Scholar-6/events{/privacy}","received_events_url":"https://api.github.com/users/Scholar-6/received_events","type":"Organization","site_admin":false},"repo":{"id":231370303,"node_id":"MDEwOlJlcG9zaXRvcnkyMzEzNzAzMDM=","name":"brillder","full_name":"Scholar-6/brillder","private":false,"owner":{"login":"Scholar-6","id":40640377,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQwNjQwMzc3","avatar_url":"https://avatars1.githubusercontent.com/u/40640377?v=4","gravatar_id":"","url":"https://api.github.com/users/Scholar-6","html_url":"https://github.com/Scholar-6","followers_url":"https://api.github.com/users/Scholar-6/followers","following_url":"https://api.github.com/users/Scholar-6/following{/other_user}","gists_url":"https://api.github.com/users/Scholar-6/gists{/gist_id}","starred_url":"https://api.github.com/users/Scholar-6/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Scholar-6/subscriptions","organizations_url":"https://api.github.com/users/Scholar-6/orgs","repos_url":"https://api.github.com/users/Scholar-6/repos","events_url":"https://api.github.com/users/Scholar-6/events{/privacy}","received_events_url":"https://api.github.com/users/Scholar-6/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/Scholar-6/brillder","description":null,"fork":false,"url":"https://api.github.com/repos/Scholar-6/brillder","forks_url":"https://api.github.com/repos/Scholar-6/brillder/forks","keys_url":"https://api.github.com/repos/Scholar-6/brillder/keys{/key_id}","collaborators_url":"https://api.github.com/repos/Scholar-6/brillder/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/Scholar-6/brillder/teams","hooks_url":"https://api.github.com/repos/Scholar-6/brillder/hooks","issue_events_url":"https://api.github.com/repos/Scholar-6/brillder/issues/events{/number}","events_url":"https://api.github.com/repos/Scholar-6/brillder/events","assignees_url":"https://api.github.com/repos/Scholar-6/brillder/assignees{/user}","branches_url":"https://api.github.com/repos/Scholar-6/brillder/branches{/branch}","tags_url":"https://api.github.com/repos/Scholar-6/brillder/tags","blobs_url":"https://api.github.com/repos/Scholar-6/brillder/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/Scholar-6/brillder/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/Scholar-6/brillder/git/refs{/sha}","trees_url":"https://api.github.com/repos/Scholar-6/brillder/git/trees{/sha}","statuses_url":"https://api.github.com/repos/Scholar-6/brillder/statuses/{sha}","languages_url":"https://api.github.com/repos/Scholar-6/brillder/languages","stargazers_url":"https://api.github.com/repos/Scholar-6/brillder/stargazers","contributors_url":"https://api.github.com/repos/Scholar-6/brillder/contributors","subscribers_url":"https://api.github.com/repos/Scholar-6/brillder/subscribers","subscription_url":"https://api.github.com/repos/Scholar-6/brillder/subscription","commits_url":"https://api.github.com/repos/Scholar-6/brillder/commits{/sha}","git_commits_url":"https://api.github.com/repos/Scholar-6/brillder/git/commits{/sha}","comments_url":"https://api.github.com/repos/Scholar-6/brillder/comments{/number}","issue_comment_url":"https://api.github.com/repos/Scholar-6/brillder/issues/comments{/number}","contents_url":"https://api.github.com/repos/Scholar-6/brillder/contents/{+path}","compare_url":"https://api.github.com/repos/Scholar-6/brillder/compare/{base}...{head}","merges_url":"https://api.github.com/repos/Scholar-6/brillder/merges","archive_url":"https://api.github.com/repos/Scholar-6/brillder/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/Scholar-6/brillder/downloads","issues_url":"https://api.github.com/repos/Scholar-6/brillder/issues{/number}","pulls_url":"https://api.github.com/repos/Scholar-6/brillder/pulls{/number}","milestones_url":"https://api.github.com/repos/Scholar-6/brillder/milestones{/number}","notifications_url":"https://api.github.com/repos/Scholar-6/brillder/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/Scholar-6/brillder/labels{/name}","releases_url":"https://api.github.com/repos/Scholar-6/brillder/releases{/id}","deployments_url":"https://api.github.com/repos/Scholar-6/brillder/deployments","created_at":"2020-01-02T11:42:35Z","updated_at":"2020-10-20T16:54:35Z","pushed_at":"2020-10-21T10:08:21Z","git_url":"git://github.com/Scholar-6/brillder.git","ssh_url":"[email protected]:Scholar-6/brillder.git","clone_url":"https://github.com/Scholar-6/brillder.git","svn_url":"https://github.com/Scholar-6/brillder","homepage":null,"size":26284,"stargazers_count":1,"watchers_count":1,"language":"TypeScript","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":9,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":173,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"forks":9,"open_issues":173,"watchers":1,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/Scholar-6/brillder/pulls/2137"},"html":{"href":"https://github.com/Scholar-6/brillder/pull/2137"},"issue":{"href":"https://api.github.com/repos/Scholar-6/brillder/issues/2137"},"comments":{"href":"https://api.github.com/repos/Scholar-6/brillder/issues/2137/comments"},"review_comments":{"href":"https://api.github.com/repos/Scholar-6/brillder/pulls/2137/comments"},"review_comment":{"href":"https://api.github.com/repos/Scholar-6/brillder/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/Scholar-6/brillder/pulls/2137/commits"},"statuses":{"href":"https://api.github.com/repos/Scholar-6/brillder/statuses/e19d6cf52ab750e88d8a5acdb8166854ab0aaa78"}},"author_association":"CONTRIBUTOR","active_lock_reason":null,"merged":false,"mergeable":null,"rebaseable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"maintainer_can_modify":true,"commits":1,"additions":9,"deletions":9,"changed_files":2}}
|
{
"id": 231370303,
"name": "Scholar-6/brillder",
"url": "https://api.github.com/repos/Scholar-6/brillder"
}
|
{
"id": 59252100,
"login": "AminHussaini",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/59252100?",
"url": "https://api.github.com/users/AminHussaini"
}
|
{
"id": 40640377,
"login": "Scholar-6",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/40640377?",
"url": "https://api.github.com/orgs/Scholar-6"
}
| 2020-10-21T10:15:33
|
13920314794
|
{"actor":{"display_login":"AminHussaini"}}
|
WatchEvent
| true
|
{"action":"started"}
|
{
"id": 229511243,
"name": "iamshuaidi/CS-Book",
"url": "https://api.github.com/repos/iamshuaidi/CS-Book"
}
|
{
"id": 62879503,
"login": "Sendev1632",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/62879503?",
"url": "https://api.github.com/users/Sendev1632"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-10-30T11:57:29
|
14028140085
|
{"actor":{"display_login":"Sendev1632"}}
|
PullRequestEvent
| true
|
{"action":"opened","number":3,"pull_request":{"url":"https://api.github.com/repos/wangpc111/github-slideshow/pulls/3","id":512842990,"node_id":"MDExOlB1bGxSZXF1ZXN0NTEyODQyOTkw","html_url":"https://github.com/wangpc111/github-slideshow/pull/3","diff_url":"https://github.com/wangpc111/github-slideshow/pull/3.diff","patch_url":"https://github.com/wangpc111/github-slideshow/pull/3.patch","issue_url":"https://api.github.com/repos/wangpc111/github-slideshow/issues/3","number":3,"state":"open","locked":false,"title":"Create 0000-01-02-wangpc111.md","user":{"login":"wangpc111","id":70354426,"node_id":"MDQ6VXNlcjcwMzU0NDI2","avatar_url":"https://avatars1.githubusercontent.com/u/70354426?v=4","gravatar_id":"","url":"https://api.github.com/users/wangpc111","html_url":"https://github.com/wangpc111","followers_url":"https://api.github.com/users/wangpc111/followers","following_url":"https://api.github.com/users/wangpc111/following{/other_user}","gists_url":"https://api.github.com/users/wangpc111/gists{/gist_id}","starred_url":"https://api.github.com/users/wangpc111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wangpc111/subscriptions","organizations_url":"https://api.github.com/users/wangpc111/orgs","repos_url":"https://api.github.com/users/wangpc111/repos","events_url":"https://api.github.com/users/wangpc111/events{/privacy}","received_events_url":"https://api.github.com/users/wangpc111/received_events","type":"User","site_admin":false},"body":"","created_at":"2020-10-30T08:39:00Z","updated_at":"2020-10-30T08:39:00Z","closed_at":null,"merged_at":null,"merge_commit_sha":null,"assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/wangpc111/github-slideshow/pulls/3/commits","review_comments_url":"https://api.github.com/repos/wangpc111/github-slideshow/pulls/3/comments","review_comment_url":"https://api.github.com/repos/wangpc111/github-slideshow/pulls/comments{/number}","comments_url":"https://api.github.com/repos/wangpc111/github-slideshow/issues/3/comments","statuses_url":"https://api.github.com/repos/wangpc111/github-slideshow/statuses/70eb13e77a29ed995441bf6fe6c579888ac2368e","head":{"label":"wangpc111:get_cheng","ref":"get_cheng","sha":"70eb13e77a29ed995441bf6fe6c579888ac2368e","user":{"login":"wangpc111","id":70354426,"node_id":"MDQ6VXNlcjcwMzU0NDI2","avatar_url":"https://avatars1.githubusercontent.com/u/70354426?v=4","gravatar_id":"","url":"https://api.github.com/users/wangpc111","html_url":"https://github.com/wangpc111","followers_url":"https://api.github.com/users/wangpc111/followers","following_url":"https://api.github.com/users/wangpc111/following{/other_user}","gists_url":"https://api.github.com/users/wangpc111/gists{/gist_id}","starred_url":"https://api.github.com/users/wangpc111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wangpc111/subscriptions","organizations_url":"https://api.github.com/users/wangpc111/orgs","repos_url":"https://api.github.com/users/wangpc111/repos","events_url":"https://api.github.com/users/wangpc111/events{/privacy}","received_events_url":"https://api.github.com/users/wangpc111/received_events","type":"User","site_admin":false},"repo":{"id":308566001,"node_id":"MDEwOlJlcG9zaXRvcnkzMDg1NjYwMDE=","name":"github-slideshow","full_name":"wangpc111/github-slideshow","private":false,"owner":{"login":"wangpc111","id":70354426,"node_id":"MDQ6VXNlcjcwMzU0NDI2","avatar_url":"https://avatars1.githubusercontent.com/u/70354426?v=4","gravatar_id":"","url":"https://api.github.com/users/wangpc111","html_url":"https://github.com/wangpc111","followers_url":"https://api.github.com/users/wangpc111/followers","following_url":"https://api.github.com/users/wangpc111/following{/other_user}","gists_url":"https://api.github.com/users/wangpc111/gists{/gist_id}","starred_url":"https://api.github.com/users/wangpc111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wangpc111/subscriptions","organizations_url":"https://api.github.com/users/wangpc111/orgs","repos_url":"https://api.github.com/users/wangpc111/repos","events_url":"https://api.github.com/users/wangpc111/events{/privacy}","received_events_url":"https://api.github.com/users/wangpc111/received_events","type":"User","site_admin":false},"html_url":"https://github.com/wangpc111/github-slideshow","description":"A robot powered training repository :robot:","fork":false,"url":"https://api.github.com/repos/wangpc111/github-slideshow","forks_url":"https://api.github.com/repos/wangpc111/github-slideshow/forks","keys_url":"https://api.github.com/repos/wangpc111/github-slideshow/keys{/key_id}","collaborators_url":"https://api.github.com/repos/wangpc111/github-slideshow/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/wangpc111/github-slideshow/teams","hooks_url":"https://api.github.com/repos/wangpc111/github-slideshow/hooks","issue_events_url":"https://api.github.com/repos/wangpc111/github-slideshow/issues/events{/number}","events_url":"https://api.github.com/repos/wangpc111/github-slideshow/events","assignees_url":"https://api.github.com/repos/wangpc111/github-slideshow/assignees{/user}","branches_url":"https://api.github.com/repos/wangpc111/github-slideshow/branches{/branch}","tags_url":"https://api.github.com/repos/wangpc111/github-slideshow/tags","blobs_url":"https://api.github.com/repos/wangpc111/github-slideshow/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/wangpc111/github-slideshow/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/wangpc111/github-slideshow/git/refs{/sha}","trees_url":"https://api.github.com/repos/wangpc111/github-slideshow/git/trees{/sha}","statuses_url":"https://api.github.com/repos/wangpc111/github-slideshow/statuses/{sha}","languages_url":"https://api.github.com/repos/wangpc111/github-slideshow/languages","stargazers_url":"https://api.github.com/repos/wangpc111/github-slideshow/stargazers","contributors_url":"https://api.github.com/repos/wangpc111/github-slideshow/contributors","subscribers_url":"https://api.github.com/repos/wangpc111/github-slideshow/subscribers","subscription_url":"https://api.github.com/repos/wangpc111/github-slideshow/subscription","commits_url":"https://api.github.com/repos/wangpc111/github-slideshow/commits{/sha}","git_commits_url":"https://api.github.com/repos/wangpc111/github-slideshow/git/commits{/sha}","comments_url":"https://api.github.com/repos/wangpc111/github-slideshow/comments{/number}","issue_comment_url":"https://api.github.com/repos/wangpc111/github-slideshow/issues/comments{/number}","contents_url":"https://api.github.com/repos/wangpc111/github-slideshow/contents/{+path}","compare_url":"https://api.github.com/repos/wangpc111/github-slideshow/compare/{base}...{head}","merges_url":"https://api.github.com/repos/wangpc111/github-slideshow/merges","archive_url":"https://api.github.com/repos/wangpc111/github-slideshow/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/wangpc111/github-slideshow/downloads","issues_url":"https://api.github.com/repos/wangpc111/github-slideshow/issues{/number}","pulls_url":"https://api.github.com/repos/wangpc111/github-slideshow/pulls{/number}","milestones_url":"https://api.github.com/repos/wangpc111/github-slideshow/milestones{/number}","notifications_url":"https://api.github.com/repos/wangpc111/github-slideshow/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/wangpc111/github-slideshow/labels{/name}","releases_url":"https://api.github.com/repos/wangpc111/github-slideshow/releases{/id}","deployments_url":"https://api.github.com/repos/wangpc111/github-slideshow/deployments","created_at":"2020-10-30T08:15:02Z","updated_at":"2020-10-30T08:15:12Z","pushed_at":"2020-10-30T08:36:35Z","git_url":"git://github.com/wangpc111/github-slideshow.git","ssh_url":"[email protected]:wangpc111/github-slideshow.git","clone_url":"https://github.com/wangpc111/github-slideshow.git","svn_url":"https://github.com/wangpc111/github-slideshow","homepage":"https://lab.github.com/githubtraining/introduction-to-github","size":0,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":2,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"forks":0,"open_issues":2,"watchers":0,"default_branch":"master"}},"base":{"label":"wangpc111:master","ref":"master","sha":"d64d18660190ae168abca68d747611affb4be584","user":{"login":"wangpc111","id":70354426,"node_id":"MDQ6VXNlcjcwMzU0NDI2","avatar_url":"https://avatars1.githubusercontent.com/u/70354426?v=4","gravatar_id":"","url":"https://api.github.com/users/wangpc111","html_url":"https://github.com/wangpc111","followers_url":"https://api.github.com/users/wangpc111/followers","following_url":"https://api.github.com/users/wangpc111/following{/other_user}","gists_url":"https://api.github.com/users/wangpc111/gists{/gist_id}","starred_url":"https://api.github.com/users/wangpc111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wangpc111/subscriptions","organizations_url":"https://api.github.com/users/wangpc111/orgs","repos_url":"https://api.github.com/users/wangpc111/repos","events_url":"https://api.github.com/users/wangpc111/events{/privacy}","received_events_url":"https://api.github.com/users/wangpc111/received_events","type":"User","site_admin":false},"repo":{"id":308566001,"node_id":"MDEwOlJlcG9zaXRvcnkzMDg1NjYwMDE=","name":"github-slideshow","full_name":"wangpc111/github-slideshow","private":false,"owner":{"login":"wangpc111","id":70354426,"node_id":"MDQ6VXNlcjcwMzU0NDI2","avatar_url":"https://avatars1.githubusercontent.com/u/70354426?v=4","gravatar_id":"","url":"https://api.github.com/users/wangpc111","html_url":"https://github.com/wangpc111","followers_url":"https://api.github.com/users/wangpc111/followers","following_url":"https://api.github.com/users/wangpc111/following{/other_user}","gists_url":"https://api.github.com/users/wangpc111/gists{/gist_id}","starred_url":"https://api.github.com/users/wangpc111/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/wangpc111/subscriptions","organizations_url":"https://api.github.com/users/wangpc111/orgs","repos_url":"https://api.github.com/users/wangpc111/repos","events_url":"https://api.github.com/users/wangpc111/events{/privacy}","received_events_url":"https://api.github.com/users/wangpc111/received_events","type":"User","site_admin":false},"html_url":"https://github.com/wangpc111/github-slideshow","description":"A robot powered training repository :robot:","fork":false,"url":"https://api.github.com/repos/wangpc111/github-slideshow","forks_url":"https://api.github.com/repos/wangpc111/github-slideshow/forks","keys_url":"https://api.github.com/repos/wangpc111/github-slideshow/keys{/key_id}","collaborators_url":"https://api.github.com/repos/wangpc111/github-slideshow/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/wangpc111/github-slideshow/teams","hooks_url":"https://api.github.com/repos/wangpc111/github-slideshow/hooks","issue_events_url":"https://api.github.com/repos/wangpc111/github-slideshow/issues/events{/number}","events_url":"https://api.github.com/repos/wangpc111/github-slideshow/events","assignees_url":"https://api.github.com/repos/wangpc111/github-slideshow/assignees{/user}","branches_url":"https://api.github.com/repos/wangpc111/github-slideshow/branches{/branch}","tags_url":"https://api.github.com/repos/wangpc111/github-slideshow/tags","blobs_url":"https://api.github.com/repos/wangpc111/github-slideshow/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/wangpc111/github-slideshow/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/wangpc111/github-slideshow/git/refs{/sha}","trees_url":"https://api.github.com/repos/wangpc111/github-slideshow/git/trees{/sha}","statuses_url":"https://api.github.com/repos/wangpc111/github-slideshow/statuses/{sha}","languages_url":"https://api.github.com/repos/wangpc111/github-slideshow/languages","stargazers_url":"https://api.github.com/repos/wangpc111/github-slideshow/stargazers","contributors_url":"https://api.github.com/repos/wangpc111/github-slideshow/contributors","subscribers_url":"https://api.github.com/repos/wangpc111/github-slideshow/subscribers","subscription_url":"https://api.github.com/repos/wangpc111/github-slideshow/subscription","commits_url":"https://api.github.com/repos/wangpc111/github-slideshow/commits{/sha}","git_commits_url":"https://api.github.com/repos/wangpc111/github-slideshow/git/commits{/sha}","comments_url":"https://api.github.com/repos/wangpc111/github-slideshow/comments{/number}","issue_comment_url":"https://api.github.com/repos/wangpc111/github-slideshow/issues/comments{/number}","contents_url":"https://api.github.com/repos/wangpc111/github-slideshow/contents/{+path}","compare_url":"https://api.github.com/repos/wangpc111/github-slideshow/compare/{base}...{head}","merges_url":"https://api.github.com/repos/wangpc111/github-slideshow/merges","archive_url":"https://api.github.com/repos/wangpc111/github-slideshow/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/wangpc111/github-slideshow/downloads","issues_url":"https://api.github.com/repos/wangpc111/github-slideshow/issues{/number}","pulls_url":"https://api.github.com/repos/wangpc111/github-slideshow/pulls{/number}","milestones_url":"https://api.github.com/repos/wangpc111/github-slideshow/milestones{/number}","notifications_url":"https://api.github.com/repos/wangpc111/github-slideshow/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/wangpc111/github-slideshow/labels{/name}","releases_url":"https://api.github.com/repos/wangpc111/github-slideshow/releases{/id}","deployments_url":"https://api.github.com/repos/wangpc111/github-slideshow/deployments","created_at":"2020-10-30T08:15:02Z","updated_at":"2020-10-30T08:15:12Z","pushed_at":"2020-10-30T08:36:35Z","git_url":"git://github.com/wangpc111/github-slideshow.git","ssh_url":"[email protected]:wangpc111/github-slideshow.git","clone_url":"https://github.com/wangpc111/github-slideshow.git","svn_url":"https://github.com/wangpc111/github-slideshow","homepage":"https://lab.github.com/githubtraining/introduction-to-github","size":0,"stargazers_count":0,"watchers_count":0,"language":"Ruby","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":true,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":2,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"forks":0,"open_issues":2,"watchers":0,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/wangpc111/github-slideshow/pulls/3"},"html":{"href":"https://github.com/wangpc111/github-slideshow/pull/3"},"issue":{"href":"https://api.github.com/repos/wangpc111/github-slideshow/issues/3"},"comments":{"href":"https://api.github.com/repos/wangpc111/github-slideshow/issues/3/comments"},"review_comments":{"href":"https://api.github.com/repos/wangpc111/github-slideshow/pulls/3/comments"},"review_comment":{"href":"https://api.github.com/repos/wangpc111/github-slideshow/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/wangpc111/github-slideshow/pulls/3/commits"},"statuses":{"href":"https://api.github.com/repos/wangpc111/github-slideshow/statuses/70eb13e77a29ed995441bf6fe6c579888ac2368e"}},"author_association":"OWNER","active_lock_reason":null,"merged":false,"mergeable":null,"rebaseable":null,"mergeable_state":"unknown","merged_by":null,"comments":0,"review_comments":0,"maintainer_can_modify":false,"commits":1,"additions":4,"deletions":0,"changed_files":1}}
|
{
"id": 308566001,
"name": "wangpc111/github-slideshow",
"url": "https://api.github.com/repos/wangpc111/github-slideshow"
}
|
{
"id": 70354426,
"login": "wangpc111",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/70354426?",
"url": "https://api.github.com/users/wangpc111"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-10-30T08:39:00
|
14026066131
|
{"actor":{"display_login":"wangpc111"}}
|
ForkEvent
| true
|
{"forkee":{"id":305550331,"node_id":"MDEwOlJlcG9zaXRvcnkzMDU1NTAzMzE=","name":"lively","full_name":"mohamdzezo/lively","private":false,"owner":{"login":"mohamdzezo","id":35547874,"node_id":"MDQ6VXNlcjM1NTQ3ODc0","avatar_url":"https://avatars0.githubusercontent.com/u/35547874?v=4","gravatar_id":"","url":"https://api.github.com/users/mohamdzezo","html_url":"https://github.com/mohamdzezo","followers_url":"https://api.github.com/users/mohamdzezo/followers","following_url":"https://api.github.com/users/mohamdzezo/following{/other_user}","gists_url":"https://api.github.com/users/mohamdzezo/gists{/gist_id}","starred_url":"https://api.github.com/users/mohamdzezo/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mohamdzezo/subscriptions","organizations_url":"https://api.github.com/users/mohamdzezo/orgs","repos_url":"https://api.github.com/users/mohamdzezo/repos","events_url":"https://api.github.com/users/mohamdzezo/events{/privacy}","received_events_url":"https://api.github.com/users/mohamdzezo/received_events","type":"User","site_admin":false},"html_url":"https://github.com/mohamdzezo/lively","description":"Free and open-source software that allows users to set animated and interactive desktop wallpapers.","fork":true,"url":"https://api.github.com/repos/mohamdzezo/lively","forks_url":"https://api.github.com/repos/mohamdzezo/lively/forks","keys_url":"https://api.github.com/repos/mohamdzezo/lively/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mohamdzezo/lively/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mohamdzezo/lively/teams","hooks_url":"https://api.github.com/repos/mohamdzezo/lively/hooks","issue_events_url":"https://api.github.com/repos/mohamdzezo/lively/issues/events{/number}","events_url":"https://api.github.com/repos/mohamdzezo/lively/events","assignees_url":"https://api.github.com/repos/mohamdzezo/lively/assignees{/user}","branches_url":"https://api.github.com/repos/mohamdzezo/lively/branches{/branch}","tags_url":"https://api.github.com/repos/mohamdzezo/lively/tags","blobs_url":"https://api.github.com/repos/mohamdzezo/lively/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mohamdzezo/lively/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mohamdzezo/lively/git/refs{/sha}","trees_url":"https://api.github.com/repos/mohamdzezo/lively/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mohamdzezo/lively/statuses/{sha}","languages_url":"https://api.github.com/repos/mohamdzezo/lively/languages","stargazers_url":"https://api.github.com/repos/mohamdzezo/lively/stargazers","contributors_url":"https://api.github.com/repos/mohamdzezo/lively/contributors","subscribers_url":"https://api.github.com/repos/mohamdzezo/lively/subscribers","subscription_url":"https://api.github.com/repos/mohamdzezo/lively/subscription","commits_url":"https://api.github.com/repos/mohamdzezo/lively/commits{/sha}","git_commits_url":"https://api.github.com/repos/mohamdzezo/lively/git/commits{/sha}","comments_url":"https://api.github.com/repos/mohamdzezo/lively/comments{/number}","issue_comment_url":"https://api.github.com/repos/mohamdzezo/lively/issues/comments{/number}","contents_url":"https://api.github.com/repos/mohamdzezo/lively/contents/{+path}","compare_url":"https://api.github.com/repos/mohamdzezo/lively/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mohamdzezo/lively/merges","archive_url":"https://api.github.com/repos/mohamdzezo/lively/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mohamdzezo/lively/downloads","issues_url":"https://api.github.com/repos/mohamdzezo/lively/issues{/number}","pulls_url":"https://api.github.com/repos/mohamdzezo/lively/pulls{/number}","milestones_url":"https://api.github.com/repos/mohamdzezo/lively/milestones{/number}","notifications_url":"https://api.github.com/repos/mohamdzezo/lively/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mohamdzezo/lively/labels{/name}","releases_url":"https://api.github.com/repos/mohamdzezo/lively/releases{/id}","deployments_url":"https://api.github.com/repos/mohamdzezo/lively/deployments","created_at":"2020-10-20T00:52:02Z","updated_at":"2020-10-19T19:28:33Z","pushed_at":"2020-10-18T04:16:12Z","git_url":"git://github.com/mohamdzezo/lively.git","ssh_url":"[email protected]:mohamdzezo/lively.git","clone_url":"https://github.com/mohamdzezo/lively.git","svn_url":"https://github.com/mohamdzezo/lively","homepage":"https://rocksdanister.github.io/lively/","size":173127,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"gpl-3.0","name":"GNU General Public License v3.0","spdx_id":"GPL-3.0","url":"https://api.github.com/licenses/gpl-3.0","node_id":"MDc6TGljZW5zZTk="},"forks":0,"open_issues":0,"watchers":0,"default_branch":"main","public":true}}
|
{
"id": 201188122,
"name": "rocksdanister/lively",
"url": "https://api.github.com/repos/rocksdanister/lively"
}
|
{
"id": 35547874,
"login": "mohamdzezo",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/35547874?",
"url": "https://api.github.com/users/mohamdzezo"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-10-20T00:52:03
|
13900639002
|
{"actor":{"display_login":"mohamdzezo"}}
|
PullRequestReviewEvent
| true
|
{"action":"created","review":{"id":513180689,"node_id":"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3NTEzMTgwNjg5","user":{"login":"cloudhead","id":40774,"node_id":"MDQ6VXNlcjQwNzc0","avatar_url":"https://avatars0.githubusercontent.com/u/40774?v=4","gravatar_id":"","url":"https://api.github.com/users/cloudhead","html_url":"https://github.com/cloudhead","followers_url":"https://api.github.com/users/cloudhead/followers","following_url":"https://api.github.com/users/cloudhead/following{/other_user}","gists_url":"https://api.github.com/users/cloudhead/gists{/gist_id}","starred_url":"https://api.github.com/users/cloudhead/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cloudhead/subscriptions","organizations_url":"https://api.github.com/users/cloudhead/orgs","repos_url":"https://api.github.com/users/cloudhead/repos","events_url":"https://api.github.com/users/cloudhead/events{/privacy}","received_events_url":"https://api.github.com/users/cloudhead/received_events","type":"User","site_admin":false},"body":"","commit_id":"d93a8985778f282c9aeaa18413c6bfa678b29b0f","submitted_at":"2020-10-20T22:27:26Z","state":"approved","html_url":"https://github.com/radicle-dev/radicle-contracts/pull/47#pullrequestreview-513180689","pull_request_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/pulls/47","author_association":"CONTRIBUTOR","_links":{"html":{"href":"https://github.com/radicle-dev/radicle-contracts/pull/47#pullrequestreview-513180689"},"pull_request":{"href":"https://api.github.com/repos/radicle-dev/radicle-contracts/pulls/47"}}},"pull_request":{"url":"https://api.github.com/repos/radicle-dev/radicle-contracts/pulls/47","id":506962110,"node_id":"MDExOlB1bGxSZXF1ZXN0NTA2OTYyMTEw","html_url":"https://github.com/radicle-dev/radicle-contracts/pull/47","diff_url":"https://github.com/radicle-dev/radicle-contracts/pull/47.diff","patch_url":"https://github.com/radicle-dev/radicle-contracts/pull/47.patch","issue_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/issues/47","number":47,"state":"open","locked":false,"title":"Remove uniswap build artifacts","user":{"login":"CodeSandwich","id":26183680,"node_id":"MDQ6VXNlcjI2MTgzNjgw","avatar_url":"https://avatars2.githubusercontent.com/u/26183680?v=4","gravatar_id":"","url":"https://api.github.com/users/CodeSandwich","html_url":"https://github.com/CodeSandwich","followers_url":"https://api.github.com/users/CodeSandwich/followers","following_url":"https://api.github.com/users/CodeSandwich/following{/other_user}","gists_url":"https://api.github.com/users/CodeSandwich/gists{/gist_id}","starred_url":"https://api.github.com/users/CodeSandwich/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/CodeSandwich/subscriptions","organizations_url":"https://api.github.com/users/CodeSandwich/orgs","repos_url":"https://api.github.com/users/CodeSandwich/repos","events_url":"https://api.github.com/users/CodeSandwich/events{/privacy}","received_events_url":"https://api.github.com/users/CodeSandwich/received_events","type":"User","site_admin":false},"body":"They don't seem to make sense and aren't even used anywhere.","created_at":"2020-10-20T17:02:31Z","updated_at":"2020-10-20T22:27:26Z","closed_at":null,"merged_at":null,"merge_commit_sha":"4354f4279f1a8dbaa8004236e2c4202b859e70ae","assignee":null,"assignees":[],"requested_reviewers":[{"login":"geigerzaehler","id":3919579,"node_id":"MDQ6VXNlcjM5MTk1Nzk=","avatar_url":"https://avatars2.githubusercontent.com/u/3919579?v=4","gravatar_id":"","url":"https://api.github.com/users/geigerzaehler","html_url":"https://github.com/geigerzaehler","followers_url":"https://api.github.com/users/geigerzaehler/followers","following_url":"https://api.github.com/users/geigerzaehler/following{/other_user}","gists_url":"https://api.github.com/users/geigerzaehler/gists{/gist_id}","starred_url":"https://api.github.com/users/geigerzaehler/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/geigerzaehler/subscriptions","organizations_url":"https://api.github.com/users/geigerzaehler/orgs","repos_url":"https://api.github.com/users/geigerzaehler/repos","events_url":"https://api.github.com/users/geigerzaehler/events{/privacy}","received_events_url":"https://api.github.com/users/geigerzaehler/received_events","type":"User","site_admin":false}],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/pulls/47/commits","review_comments_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/pulls/47/comments","review_comment_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/pulls/comments{/number}","comments_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/issues/47/comments","statuses_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/statuses/d93a8985778f282c9aeaa18413c6bfa678b29b0f","head":{"label":"radicle-dev:slim_artifacts","ref":"slim_artifacts","sha":"d93a8985778f282c9aeaa18413c6bfa678b29b0f","user":{"login":"radicle-dev","id":48290027,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ4MjkwMDI3","avatar_url":"https://avatars3.githubusercontent.com/u/48290027?v=4","gravatar_id":"","url":"https://api.github.com/users/radicle-dev","html_url":"https://github.com/radicle-dev","followers_url":"https://api.github.com/users/radicle-dev/followers","following_url":"https://api.github.com/users/radicle-dev/following{/other_user}","gists_url":"https://api.github.com/users/radicle-dev/gists{/gist_id}","starred_url":"https://api.github.com/users/radicle-dev/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/radicle-dev/subscriptions","organizations_url":"https://api.github.com/users/radicle-dev/orgs","repos_url":"https://api.github.com/users/radicle-dev/repos","events_url":"https://api.github.com/users/radicle-dev/events{/privacy}","received_events_url":"https://api.github.com/users/radicle-dev/received_events","type":"Organization","site_admin":false},"repo":{"id":286750628,"node_id":"MDEwOlJlcG9zaXRvcnkyODY3NTA2Mjg=","name":"radicle-contracts","full_name":"radicle-dev/radicle-contracts","private":false,"owner":{"login":"radicle-dev","id":48290027,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ4MjkwMDI3","avatar_url":"https://avatars3.githubusercontent.com/u/48290027?v=4","gravatar_id":"","url":"https://api.github.com/users/radicle-dev","html_url":"https://github.com/radicle-dev","followers_url":"https://api.github.com/users/radicle-dev/followers","following_url":"https://api.github.com/users/radicle-dev/following{/other_user}","gists_url":"https://api.github.com/users/radicle-dev/gists{/gist_id}","starred_url":"https://api.github.com/users/radicle-dev/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/radicle-dev/subscriptions","organizations_url":"https://api.github.com/users/radicle-dev/orgs","repos_url":"https://api.github.com/users/radicle-dev/repos","events_url":"https://api.github.com/users/radicle-dev/events{/privacy}","received_events_url":"https://api.github.com/users/radicle-dev/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/radicle-dev/radicle-contracts","description":"Radicle contracts on Ethereum","fork":false,"url":"https://api.github.com/repos/radicle-dev/radicle-contracts","forks_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/forks","keys_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/keys{/key_id}","collaborators_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/teams","hooks_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/hooks","issue_events_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/issues/events{/number}","events_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/events","assignees_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/assignees{/user}","branches_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/branches{/branch}","tags_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/tags","blobs_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/git/refs{/sha}","trees_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/git/trees{/sha}","statuses_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/statuses/{sha}","languages_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/languages","stargazers_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/stargazers","contributors_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/contributors","subscribers_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/subscribers","subscription_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/subscription","commits_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/commits{/sha}","git_commits_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/git/commits{/sha}","comments_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/comments{/number}","issue_comment_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/issues/comments{/number}","contents_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/contents/{+path}","compare_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/compare/{base}...{head}","merges_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/merges","archive_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/downloads","issues_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/issues{/number}","pulls_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/pulls{/number}","milestones_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/milestones{/number}","notifications_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/labels{/name}","releases_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/releases{/id}","deployments_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/deployments","created_at":"2020-08-11T13:22:37Z","updated_at":"2020-10-19T13:32:07Z","pushed_at":"2020-10-20T17:16:57Z","git_url":"git://github.com/radicle-dev/radicle-contracts.git","ssh_url":"[email protected]:radicle-dev/radicle-contracts.git","clone_url":"https://github.com/radicle-dev/radicle-contracts.git","svn_url":"https://github.com/radicle-dev/radicle-contracts","homepage":"","size":282,"stargazers_count":3,"watchers_count":3,"language":"Solidity","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":12,"license":{"key":"gpl-3.0","name":"GNU General Public License v3.0","spdx_id":"GPL-3.0","url":"https://api.github.com/licenses/gpl-3.0","node_id":"MDc6TGljZW5zZTk="},"forks":0,"open_issues":12,"watchers":3,"default_branch":"master"}},"base":{"label":"radicle-dev:master","ref":"master","sha":"f09363efd1bcc69c4bc76d94cd906c6e11a4ff00","user":{"login":"radicle-dev","id":48290027,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ4MjkwMDI3","avatar_url":"https://avatars3.githubusercontent.com/u/48290027?v=4","gravatar_id":"","url":"https://api.github.com/users/radicle-dev","html_url":"https://github.com/radicle-dev","followers_url":"https://api.github.com/users/radicle-dev/followers","following_url":"https://api.github.com/users/radicle-dev/following{/other_user}","gists_url":"https://api.github.com/users/radicle-dev/gists{/gist_id}","starred_url":"https://api.github.com/users/radicle-dev/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/radicle-dev/subscriptions","organizations_url":"https://api.github.com/users/radicle-dev/orgs","repos_url":"https://api.github.com/users/radicle-dev/repos","events_url":"https://api.github.com/users/radicle-dev/events{/privacy}","received_events_url":"https://api.github.com/users/radicle-dev/received_events","type":"Organization","site_admin":false},"repo":{"id":286750628,"node_id":"MDEwOlJlcG9zaXRvcnkyODY3NTA2Mjg=","name":"radicle-contracts","full_name":"radicle-dev/radicle-contracts","private":false,"owner":{"login":"radicle-dev","id":48290027,"node_id":"MDEyOk9yZ2FuaXphdGlvbjQ4MjkwMDI3","avatar_url":"https://avatars3.githubusercontent.com/u/48290027?v=4","gravatar_id":"","url":"https://api.github.com/users/radicle-dev","html_url":"https://github.com/radicle-dev","followers_url":"https://api.github.com/users/radicle-dev/followers","following_url":"https://api.github.com/users/radicle-dev/following{/other_user}","gists_url":"https://api.github.com/users/radicle-dev/gists{/gist_id}","starred_url":"https://api.github.com/users/radicle-dev/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/radicle-dev/subscriptions","organizations_url":"https://api.github.com/users/radicle-dev/orgs","repos_url":"https://api.github.com/users/radicle-dev/repos","events_url":"https://api.github.com/users/radicle-dev/events{/privacy}","received_events_url":"https://api.github.com/users/radicle-dev/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/radicle-dev/radicle-contracts","description":"Radicle contracts on Ethereum","fork":false,"url":"https://api.github.com/repos/radicle-dev/radicle-contracts","forks_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/forks","keys_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/keys{/key_id}","collaborators_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/teams","hooks_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/hooks","issue_events_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/issues/events{/number}","events_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/events","assignees_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/assignees{/user}","branches_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/branches{/branch}","tags_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/tags","blobs_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/git/refs{/sha}","trees_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/git/trees{/sha}","statuses_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/statuses/{sha}","languages_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/languages","stargazers_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/stargazers","contributors_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/contributors","subscribers_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/subscribers","subscription_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/subscription","commits_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/commits{/sha}","git_commits_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/git/commits{/sha}","comments_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/comments{/number}","issue_comment_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/issues/comments{/number}","contents_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/contents/{+path}","compare_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/compare/{base}...{head}","merges_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/merges","archive_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/downloads","issues_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/issues{/number}","pulls_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/pulls{/number}","milestones_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/milestones{/number}","notifications_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/labels{/name}","releases_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/releases{/id}","deployments_url":"https://api.github.com/repos/radicle-dev/radicle-contracts/deployments","created_at":"2020-08-11T13:22:37Z","updated_at":"2020-10-19T13:32:07Z","pushed_at":"2020-10-20T17:16:57Z","git_url":"git://github.com/radicle-dev/radicle-contracts.git","ssh_url":"[email protected]:radicle-dev/radicle-contracts.git","clone_url":"https://github.com/radicle-dev/radicle-contracts.git","svn_url":"https://github.com/radicle-dev/radicle-contracts","homepage":"","size":282,"stargazers_count":3,"watchers_count":3,"language":"Solidity","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":12,"license":{"key":"gpl-3.0","name":"GNU General Public License v3.0","spdx_id":"GPL-3.0","url":"https://api.github.com/licenses/gpl-3.0","node_id":"MDc6TGljZW5zZTk="},"forks":0,"open_issues":12,"watchers":3,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/radicle-dev/radicle-contracts/pulls/47"},"html":{"href":"https://github.com/radicle-dev/radicle-contracts/pull/47"},"issue":{"href":"https://api.github.com/repos/radicle-dev/radicle-contracts/issues/47"},"comments":{"href":"https://api.github.com/repos/radicle-dev/radicle-contracts/issues/47/comments"},"review_comments":{"href":"https://api.github.com/repos/radicle-dev/radicle-contracts/pulls/47/comments"},"review_comment":{"href":"https://api.github.com/repos/radicle-dev/radicle-contracts/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/radicle-dev/radicle-contracts/pulls/47/commits"},"statuses":{"href":"https://api.github.com/repos/radicle-dev/radicle-contracts/statuses/d93a8985778f282c9aeaa18413c6bfa678b29b0f"}},"author_association":"CONTRIBUTOR","active_lock_reason":null}}
|
{
"id": 286750628,
"name": "radicle-dev/radicle-contracts",
"url": "https://api.github.com/repos/radicle-dev/radicle-contracts"
}
|
{
"id": 40774,
"login": "cloudhead",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/40774?",
"url": "https://api.github.com/users/cloudhead"
}
|
{
"id": 48290027,
"login": "radicle-dev",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/48290027?",
"url": "https://api.github.com/orgs/radicle-dev"
}
| 2020-10-20T22:27:27
|
13914573295
|
{"actor":{"display_login":"cloudhead"}}
|
IssuesEvent
| true
|
{"action":"opened","issue":{"url":"https://api.github.com/repos/jac-uk/admin/issues/963","repository_url":"https://api.github.com/repos/jac-uk/admin","labels_url":"https://api.github.com/repos/jac-uk/admin/issues/963/labels{/name}","comments_url":"https://api.github.com/repos/jac-uk/admin/issues/963/comments","events_url":"https://api.github.com/repos/jac-uk/admin/issues/963/events","html_url":"https://github.com/jac-uk/admin/issues/963","id":725817330,"node_id":"MDU6SXNzdWU3MjU4MTczMzA=","number":963,"title":"Add optional text area to questions for Scenario test for instructions ","user":{"login":"Rebecca-mcknight1991","id":56963348,"node_id":"MDQ6VXNlcjU2OTYzMzQ4","avatar_url":"https://avatars2.githubusercontent.com/u/56963348?v=4","gravatar_id":"","url":"https://api.github.com/users/Rebecca-mcknight1991","html_url":"https://github.com/Rebecca-mcknight1991","followers_url":"https://api.github.com/users/Rebecca-mcknight1991/followers","following_url":"https://api.github.com/users/Rebecca-mcknight1991/following{/other_user}","gists_url":"https://api.github.com/users/Rebecca-mcknight1991/gists{/gist_id}","starred_url":"https://api.github.com/users/Rebecca-mcknight1991/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Rebecca-mcknight1991/subscriptions","organizations_url":"https://api.github.com/users/Rebecca-mcknight1991/orgs","repos_url":"https://api.github.com/users/Rebecca-mcknight1991/repos","events_url":"https://api.github.com/users/Rebecca-mcknight1991/events{/privacy}","received_events_url":"https://api.github.com/users/Rebecca-mcknight1991/received_events","type":"User","site_admin":false},"labels":[],"state":"open","locked":false,"assignee":{"login":"warrensearle","id":8524401,"node_id":"MDQ6VXNlcjg1MjQ0MDE=","avatar_url":"https://avatars1.githubusercontent.com/u/8524401?v=4","gravatar_id":"","url":"https://api.github.com/users/warrensearle","html_url":"https://github.com/warrensearle","followers_url":"https://api.github.com/users/warrensearle/followers","following_url":"https://api.github.com/users/warrensearle/following{/other_user}","gists_url":"https://api.github.com/users/warrensearle/gists{/gist_id}","starred_url":"https://api.github.com/users/warrensearle/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/warrensearle/subscriptions","organizations_url":"https://api.github.com/users/warrensearle/orgs","repos_url":"https://api.github.com/users/warrensearle/repos","events_url":"https://api.github.com/users/warrensearle/events{/privacy}","received_events_url":"https://api.github.com/users/warrensearle/received_events","type":"User","site_admin":false},"assignees":[{"login":"warrensearle","id":8524401,"node_id":"MDQ6VXNlcjg1MjQ0MDE=","avatar_url":"https://avatars1.githubusercontent.com/u/8524401?v=4","gravatar_id":"","url":"https://api.github.com/users/warrensearle","html_url":"https://github.com/warrensearle","followers_url":"https://api.github.com/users/warrensearle/followers","following_url":"https://api.github.com/users/warrensearle/following{/other_user}","gists_url":"https://api.github.com/users/warrensearle/gists{/gist_id}","starred_url":"https://api.github.com/users/warrensearle/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/warrensearle/subscriptions","organizations_url":"https://api.github.com/users/warrensearle/orgs","repos_url":"https://api.github.com/users/warrensearle/repos","events_url":"https://api.github.com/users/warrensearle/events{/privacy}","received_events_url":"https://api.github.com/users/warrensearle/received_events","type":"User","site_admin":false},{"login":"lloback","id":15261814,"node_id":"MDQ6VXNlcjE1MjYxODE0","avatar_url":"https://avatars2.githubusercontent.com/u/15261814?v=4","gravatar_id":"","url":"https://api.github.com/users/lloback","html_url":"https://github.com/lloback","followers_url":"https://api.github.com/users/lloback/followers","following_url":"https://api.github.com/users/lloback/following{/other_user}","gists_url":"https://api.github.com/users/lloback/gists{/gist_id}","starred_url":"https://api.github.com/users/lloback/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/lloback/subscriptions","organizations_url":"https://api.github.com/users/lloback/orgs","repos_url":"https://api.github.com/users/lloback/repos","events_url":"https://api.github.com/users/lloback/events{/privacy}","received_events_url":"https://api.github.com/users/lloback/received_events","type":"User","site_admin":false}],"milestone":null,"comments":0,"created_at":"2020-10-20T17:56:26Z","updated_at":"2020-10-20T17:56:26Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"**Is your feature request related to a problem? Please describe.**\nAs an admin I want to be able to add question instructions that expand upon the question. \n\n**Describe the solution you'd like**\nA title box for the question. An optional text area for instructions under this that maintains any line breaks the admin insert. This will allow the team for Recorder to put question 2 in and then put the instructions saying for this question please.... with further hints to the candidate. \n\nThis text box needs to be\n1) optional\n2) allow admin to use line breaks\n3) display line breaks on apply \n4) be an option for each Q \n\n","performed_via_github_app":null}}
|
{
"id": 201485031,
"name": "jac-uk/admin",
"url": "https://api.github.com/repos/jac-uk/admin"
}
|
{
"id": 56963348,
"login": "Rebecca-mcknight1991",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/56963348?",
"url": "https://api.github.com/users/Rebecca-mcknight1991"
}
|
{
"id": 26138846,
"login": "jac-uk",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/26138846?",
"url": "https://api.github.com/orgs/jac-uk"
}
| 2020-10-20T17:56:26
|
13911816631
|
{"actor":{"display_login":"Rebecca-mcknight1991"}}
|
PushEvent
| true
|
{"push_id":5931318754,"size":14,"distinct_size":0,"ref":"refs/heads/develop","head":"7cf86d967082ddff1f87d557075cc493a3d6c8d5","before":"2987b3bc241870aa34bca208bcd91cb1c02581cb","commits":[{"sha":"b2cca6c2a79ee2ee6088c4ac42f9624545685b82","author":{"name":"Simon","email":"[email protected]"},"message":"Adding gitignore","distinct":false,"url":"https://api.github.com/repos/age-rs/libtwitch-rs/commits/b2cca6c2a79ee2ee6088c4ac42f9624545685b82"},{"sha":"ae8db08362b0bcb6f6f63e85f802a347d03d327c","author":{"name":"Simon","email":"[email protected]"},"message":"Adding Changelog","distinct":false,"url":"https://api.github.com/repos/age-rs/libtwitch-rs/commits/ae8db08362b0bcb6f6f63e85f802a347d03d327c"},{"sha":"a96df0271f6a30a15a0b35b033032a5bcdfc3da9","author":{"name":"Simon","email":"[email protected]"},"message":"Add deny.toml","distinct":false,"url":"https://api.github.com/repos/age-rs/libtwitch-rs/commits/a96df0271f6a30a15a0b35b033032a5bcdfc3da9"},{"sha":"5a593bd39caa83ab9688389a65844f2a07729cbc","author":{"name":"Simon","email":"[email protected]"},"message":"Use thiserror as convenient error derive macro","distinct":false,"url":"https://api.github.com/repos/age-rs/libtwitch-rs/commits/5a593bd39caa83ab9688389a65844f2a07729cbc"},{"sha":"351d4f34e217879ed5a37e0bad41fd6047f52d3d","author":{"name":"Simon","email":"[email protected]"},"message":"Added vscode settings file to gitirgnore","distinct":false,"url":"https://api.github.com/repos/age-rs/libtwitch-rs/commits/351d4f34e217879ed5a37e0bad41fd6047f52d3d"},{"sha":"585d6aefa8f9cd9077f95a7795373d5b2d0dc324","author":{"name":"Simon","email":"[email protected]"},"message":"Updated dependencies (serde, toml, chrono)","distinct":false,"url":"https://api.github.com/repos/age-rs/libtwitch-rs/commits/585d6aefa8f9cd9077f95a7795373d5b2d0dc324"},{"sha":"b2355effe9f0606525434f415bc425b388c3f164","author":{"name":"Simon","email":"[email protected]"},"message":"Updated changelog","distinct":false,"url":"https://api.github.com/repos/age-rs/libtwitch-rs/commits/b2355effe9f0606525434f415bc425b388c3f164"},{"sha":"0176afa9ae1c117711e46c328165f188015e8f42","author":{"name":"Simon","email":"[email protected]"},"message":"Ran cargo fmt","distinct":false,"url":"https://api.github.com/repos/age-rs/libtwitch-rs/commits/0176afa9ae1c117711e46c328165f188015e8f42"},{"sha":"4d961132df77e4cd85d7f7d4452904548a4040cd","author":{"name":"Simon","email":"[email protected]"},"message":"Removed tabs and replaced it with spaces to make clippy happy","distinct":false,"url":"https://api.github.com/repos/age-rs/libtwitch-rs/commits/4d961132df77e4cd85d7f7d4452904548a4040cd"},{"sha":"3f0e740a30d2999ff67c915713e0421322a8017a","author":{"name":"Simon","email":"[email protected]"},"message":"Remove ballast from deny.toml","distinct":false,"url":"https://api.github.com/repos/age-rs/libtwitch-rs/commits/3f0e740a30d2999ff67c915713e0421322a8017a"},{"sha":"88eb7dc30de5cfefa723e5569fd1b0bfbdaa9753","author":{"name":"Simon","email":"[email protected]"},"message":"Updating readme as Helix has gone out of scope","distinct":false,"url":"https://api.github.com/repos/age-rs/libtwitch-rs/commits/88eb7dc30de5cfefa723e5569fd1b0bfbdaa9753"},{"sha":"6bdac231ba6825437f19f9595e172b63b68bb645","author":{"name":"simonsan","email":"[email protected]"},"message":"Reqwest replaces hyper (#44)","distinct":false,"url":"https://api.github.com/repos/age-rs/libtwitch-rs/commits/6bdac231ba6825437f19f9595e172b63b68bb645"},{"sha":"dce4a69af08732fb83ad2ea195634d5d6b1318e2","author":{"name":"Simon","email":"[email protected]"},"message":"Preparing Release v0.2.0,\nFixing wrong header","distinct":false,"url":"https://api.github.com/repos/age-rs/libtwitch-rs/commits/dce4a69af08732fb83ad2ea195634d5d6b1318e2"},{"sha":"7cf86d967082ddff1f87d557075cc493a3d6c8d5","author":{"name":"Simon","email":"[email protected]"},"message":"Release libtwitch-rs 0.2.0 / 2020-10-28","distinct":false,"url":"https://api.github.com/repos/age-rs/libtwitch-rs/commits/7cf86d967082ddff1f87d557075cc493a3d6c8d5"}]}
|
{
"id": 208603164,
"name": "age-rs/libtwitch-rs",
"url": "https://api.github.com/repos/age-rs/libtwitch-rs"
}
|
{
"id": 14062932,
"login": "simonsan",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/14062932?",
"url": "https://api.github.com/users/simonsan"
}
|
{
"id": 65219520,
"login": "age-rs",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/65219520?",
"url": "https://api.github.com/orgs/age-rs"
}
| 2020-10-28T05:19:18
|
13996207044
|
{"actor":{"display_login":"simonsan"}}
|
PushEvent
| true
|
{"push_id":5895108815,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"748380147f87ec9ee17b7af2220bddbcc1f59c3b","before":"6935e990819fbf2456308d3a3d52f609efea3460","commits":[{"sha":"748380147f87ec9ee17b7af2220bddbcc1f59c3b","author":{"name":"saltyaimbotter","email":"[email protected]"},"message":"remove ghost","distinct":true,"url":"https://api.github.com/repos/BetonQuest/BetonQuest/commits/748380147f87ec9ee17b7af2220bddbcc1f59c3b"}]}
|
{
"id": 27137886,
"name": "BetonQuest/BetonQuest",
"url": "https://api.github.com/repos/BetonQuest/BetonQuest"
}
|
{
"id": 40303883,
"login": "SaltyAimbOtter",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/40303883?",
"url": "https://api.github.com/users/SaltyAimbOtter"
}
|
{
"id": 62897788,
"login": "BetonQuest",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/62897788?",
"url": "https://api.github.com/orgs/BetonQuest"
}
| 2020-10-21T15:55:12
|
13924734010
|
{"actor":{"display_login":"SaltyAimbOtter"}}
|
CreateEvent
| true
|
{"ref":"lokalise-2020-10-21_09-27-08","ref_type":"branch","master_branch":"develop","description":"The dashboard provides information on the outbreak and prevalence of COVID-19 in The Netherlands","pusher_type":"user"}
|
{
"id": 268860281,
"name": "minvws/nl-covid19-data-dashboard",
"url": "https://api.github.com/repos/minvws/nl-covid19-data-dashboard"
}
|
{
"id": 66416946,
"login": "VWSCoronaDashboard",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/66416946?",
"url": "https://api.github.com/users/VWSCoronaDashboard"
}
|
{
"id": 65604736,
"login": "minvws",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/65604736?",
"url": "https://api.github.com/orgs/minvws"
}
| 2020-10-21T07:27:10
|
13918276314
|
{"actor":{"display_login":"VWSCoronaDashboard"}}
|
PushEvent
| true
|
{"push_id":5900984453,"size":1,"distinct_size":1,"ref":"refs/heads/main","head":"76b1f5d06cb0ede53c16fac9f1c9479af0b70379","before":"71d889ef4fdd987d76b1af3e6de2b94194ff495e","commits":[{"sha":"76b1f5d06cb0ede53c16fac9f1c9479af0b70379","author":{"name":"Willem van Heemstra","email":"[email protected]"},"message":"Add files via upload","distinct":true,"url":"https://api.github.com/repos/vanHeemstraDesigns/line-of-action-headstart/commits/76b1f5d06cb0ede53c16fac9f1c9479af0b70379"}]}
|
{
"id": 306331354,
"name": "vanHeemstraDesigns/line-of-action-headstart",
"url": "https://api.github.com/repos/vanHeemstraDesigns/line-of-action-headstart"
}
|
{
"id": 12828104,
"login": "willem-vanheemstrasystems",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/12828104?",
"url": "https://api.github.com/users/willem-vanheemstrasystems"
}
|
{
"id": 16708663,
"login": "vanHeemstraDesigns",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/16708663?",
"url": "https://api.github.com/orgs/vanHeemstraDesigns"
}
| 2020-10-22T13:14:50
|
13936677196
|
{"actor":{"display_login":"willem-vanheemstrasystems"}}
|
PullRequestReviewCommentEvent
| true
|
{"action":"created","comment":{"url":"https://api.github.com/repos/ipmitool/ipmitool/pulls/comments/508556163","pull_request_review_id":512779262,"id":508556163,"node_id":"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDUwODU1NjE2Mw==","diff_hunk":"@@ -626,42 +648,41 @@ ipmi_user_mod(struct ipmi_intf *intf, int argc, char **argv)\n \treturn 0;\n }\n \n-#define USER_PW_IPMI15_LEN 16 /* IPMI 1.5 only allowed for 16 bytes */\n-#define USER_PW_IPMI20_LEN 20 /* IPMI 2.0 allows for 20 bytes */\n-#define USER_PW_MAX_LEN USER_PW_IPMI20_LEN\n-\n int\n ipmi_user_password(struct ipmi_intf *intf, int argc, char **argv)\n {\n-\tchar *password = NULL;\n+\tchar *password;\n+\tchar passbuf[USER_PW_MAX_LEN + 1];\n+\tchar tmp[USER_PW_MAX_LEN + 1];\n \tint ccode = 0;\n \tuint8_t password_type = USER_PW_IPMI15_LEN;\n \tsize_t password_len;\n \tuint8_t user_id = 0;\n+\tsize_t tmplen;\n+\n \tif (is_ipmi_user_id(argv[2], &user_id)) {\n \t\treturn (-1);\n \t}\n \n \tif (argc == 3) {\n \t\t/* We need to prompt for a password */\n-\t\tchar *tmp;\n-\t\tsize_t tmplen;\n-\t\tpassword = ask_password(user_id);\n-\t\tif (!password) {\n-\t\t\tlprintf(LOG_ERR, \"ipmitool: malloc failure\");\n+\t\tmemset(passbuf, 0, sizeof(passbuf));\n+\t\tmemset(tmp, 0, sizeof(tmp));\n+\n+\t\tif (ask_password(user_id, passbuf, sizeof(passbuf))) {\n \t\t\treturn (-1);\n \t\t}\n-\t\ttmp = ask_password(user_id);\n-\t\ttmplen = strnlen(tmp, USER_PW_MAX_LEN + 1);\n-\t\tif (!tmp) {\n-\t\t\tlprintf(LOG_ERR, \"ipmitool: malloc failure\");\n+\t\tif (ask_password(user_id, tmp, sizeof(tmp))) {\n \t\t\treturn (-1);\n \t\t}\n-\t\tif (strncmp(password, tmp, tmplen)) {\n+\t\ttmplen = strnlen(tmp, USER_PW_MAX_LEN + 1);\n+\t\tif (strncmp(passbuf, tmp, tmplen)) {\n \t\t\tlprintf(LOG_ERR, \"Passwords do not match or are \"\n \t\t\t \"longer than %d\", USER_PW_MAX_LEN);\n \t\t\treturn (-1);\n \t\t}\n+\t\t/* XXX memcpy out passwords asap. */","path":"lib/ipmi_user.c","position":null,"original_position":133,"commit_id":"fff6052d7f65109442176d6a8fbec74dccf3fdfb","original_commit_id":"0199b15165645aad8f31cb18fdbdf213a7165530","user":{"login":"AlexanderAmelkin","id":4518124,"node_id":"MDQ6VXNlcjQ1MTgxMjQ=","avatar_url":"https://avatars0.githubusercontent.com/u/4518124?v=4","gravatar_id":"","url":"https://api.github.com/users/AlexanderAmelkin","html_url":"https://github.com/AlexanderAmelkin","followers_url":"https://api.github.com/users/AlexanderAmelkin/followers","following_url":"https://api.github.com/users/AlexanderAmelkin/following{/other_user}","gists_url":"https://api.github.com/users/AlexanderAmelkin/gists{/gist_id}","starred_url":"https://api.github.com/users/AlexanderAmelkin/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AlexanderAmelkin/subscriptions","organizations_url":"https://api.github.com/users/AlexanderAmelkin/orgs","repos_url":"https://api.github.com/users/AlexanderAmelkin/repos","events_url":"https://api.github.com/users/AlexanderAmelkin/events{/privacy}","received_events_url":"https://api.github.com/users/AlexanderAmelkin/received_events","type":"User","site_admin":false},"body":"Yes, that is clear, I'm just wondering who is the target of this comment. Who exactly needs to do this, when they are going to do this (never, I figure), and if it needs to be done, then why not do it right away?","created_at":"2020-10-20T14:27:00Z","updated_at":"2020-10-20T14:27:00Z","html_url":"https://github.com/ipmitool/ipmitool/pull/243#discussion_r508556163","pull_request_url":"https://api.github.com/repos/ipmitool/ipmitool/pulls/243","author_association":"CONTRIBUTOR","_links":{"self":{"href":"https://api.github.com/repos/ipmitool/ipmitool/pulls/comments/508556163"},"html":{"href":"https://github.com/ipmitool/ipmitool/pull/243#discussion_r508556163"},"pull_request":{"href":"https://api.github.com/repos/ipmitool/ipmitool/pulls/243"}},"start_line":null,"original_start_line":null,"start_side":null,"line":null,"original_line":684,"side":"RIGHT","in_reply_to_id":503541049},"pull_request":{"url":"https://api.github.com/repos/ipmitool/ipmitool/pulls/243","id":495776290,"node_id":"MDExOlB1bGxSZXF1ZXN0NDk1Nzc2Mjkw","html_url":"https://github.com/ipmitool/ipmitool/pull/243","diff_url":"https://github.com/ipmitool/ipmitool/pull/243.diff","patch_url":"https://github.com/ipmitool/ipmitool/pull/243.patch","issue_url":"https://api.github.com/repos/ipmitool/ipmitool/issues/243","number":243,"state":"open","locked":false,"title":"ipmitool: Fix ask_password getpass usage.","user":{"login":"mbap","id":5605870,"node_id":"MDQ6VXNlcjU2MDU4NzA=","avatar_url":"https://avatars1.githubusercontent.com/u/5605870?v=4","gravatar_id":"","url":"https://api.github.com/users/mbap","html_url":"https://github.com/mbap","followers_url":"https://api.github.com/users/mbap/followers","following_url":"https://api.github.com/users/mbap/following{/other_user}","gists_url":"https://api.github.com/users/mbap/gists{/gist_id}","starred_url":"https://api.github.com/users/mbap/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbap/subscriptions","organizations_url":"https://api.github.com/users/mbap/orgs","repos_url":"https://api.github.com/users/mbap/repos","events_url":"https://api.github.com/users/mbap/events{/privacy}","received_events_url":"https://api.github.com/users/mbap/received_events","type":"User","site_admin":false},"body":"This is a quick fix for password matching. getpass was not being used\r\ncorrectly because it uses a static buffer. Pointers to the getpass\r\nreturn value will all point to that same static buffer. Comparing them\r\nafter multiple calls in incorrect.\r\n\r\nThis fix takes the return value to getpass and stores it into a local\r\nbuffer for comparison. There are additional improvements that could be\r\nmade such as wiping the pw buffers asap to reduce duration in memory.","created_at":"2020-09-30T20:42:16Z","updated_at":"2020-10-20T14:27:00Z","closed_at":null,"merged_at":null,"merge_commit_sha":"bdeda5b81b0b206f9cce60cd86c768104deba3c3","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/ipmitool/ipmitool/pulls/243/commits","review_comments_url":"https://api.github.com/repos/ipmitool/ipmitool/pulls/243/comments","review_comment_url":"https://api.github.com/repos/ipmitool/ipmitool/pulls/comments{/number}","comments_url":"https://api.github.com/repos/ipmitool/ipmitool/issues/243/comments","statuses_url":"https://api.github.com/repos/ipmitool/ipmitool/statuses/fff6052d7f65109442176d6a8fbec74dccf3fdfb","head":{"label":"mbap:master","ref":"master","sha":"fff6052d7f65109442176d6a8fbec74dccf3fdfb","user":{"login":"mbap","id":5605870,"node_id":"MDQ6VXNlcjU2MDU4NzA=","avatar_url":"https://avatars1.githubusercontent.com/u/5605870?v=4","gravatar_id":"","url":"https://api.github.com/users/mbap","html_url":"https://github.com/mbap","followers_url":"https://api.github.com/users/mbap/followers","following_url":"https://api.github.com/users/mbap/following{/other_user}","gists_url":"https://api.github.com/users/mbap/gists{/gist_id}","starred_url":"https://api.github.com/users/mbap/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbap/subscriptions","organizations_url":"https://api.github.com/users/mbap/orgs","repos_url":"https://api.github.com/users/mbap/repos","events_url":"https://api.github.com/users/mbap/events{/privacy}","received_events_url":"https://api.github.com/users/mbap/received_events","type":"User","site_admin":false},"repo":{"id":290118741,"node_id":"MDEwOlJlcG9zaXRvcnkyOTAxMTg3NDE=","name":"ipmitool","full_name":"mbap/ipmitool","private":false,"owner":{"login":"mbap","id":5605870,"node_id":"MDQ6VXNlcjU2MDU4NzA=","avatar_url":"https://avatars1.githubusercontent.com/u/5605870?v=4","gravatar_id":"","url":"https://api.github.com/users/mbap","html_url":"https://github.com/mbap","followers_url":"https://api.github.com/users/mbap/followers","following_url":"https://api.github.com/users/mbap/following{/other_user}","gists_url":"https://api.github.com/users/mbap/gists{/gist_id}","starred_url":"https://api.github.com/users/mbap/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mbap/subscriptions","organizations_url":"https://api.github.com/users/mbap/orgs","repos_url":"https://api.github.com/users/mbap/repos","events_url":"https://api.github.com/users/mbap/events{/privacy}","received_events_url":"https://api.github.com/users/mbap/received_events","type":"User","site_admin":false},"html_url":"https://github.com/mbap/ipmitool","description":"An open-source tool for controlling IPMI-enabled systems","fork":true,"url":"https://api.github.com/repos/mbap/ipmitool","forks_url":"https://api.github.com/repos/mbap/ipmitool/forks","keys_url":"https://api.github.com/repos/mbap/ipmitool/keys{/key_id}","collaborators_url":"https://api.github.com/repos/mbap/ipmitool/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/mbap/ipmitool/teams","hooks_url":"https://api.github.com/repos/mbap/ipmitool/hooks","issue_events_url":"https://api.github.com/repos/mbap/ipmitool/issues/events{/number}","events_url":"https://api.github.com/repos/mbap/ipmitool/events","assignees_url":"https://api.github.com/repos/mbap/ipmitool/assignees{/user}","branches_url":"https://api.github.com/repos/mbap/ipmitool/branches{/branch}","tags_url":"https://api.github.com/repos/mbap/ipmitool/tags","blobs_url":"https://api.github.com/repos/mbap/ipmitool/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/mbap/ipmitool/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/mbap/ipmitool/git/refs{/sha}","trees_url":"https://api.github.com/repos/mbap/ipmitool/git/trees{/sha}","statuses_url":"https://api.github.com/repos/mbap/ipmitool/statuses/{sha}","languages_url":"https://api.github.com/repos/mbap/ipmitool/languages","stargazers_url":"https://api.github.com/repos/mbap/ipmitool/stargazers","contributors_url":"https://api.github.com/repos/mbap/ipmitool/contributors","subscribers_url":"https://api.github.com/repos/mbap/ipmitool/subscribers","subscription_url":"https://api.github.com/repos/mbap/ipmitool/subscription","commits_url":"https://api.github.com/repos/mbap/ipmitool/commits{/sha}","git_commits_url":"https://api.github.com/repos/mbap/ipmitool/git/commits{/sha}","comments_url":"https://api.github.com/repos/mbap/ipmitool/comments{/number}","issue_comment_url":"https://api.github.com/repos/mbap/ipmitool/issues/comments{/number}","contents_url":"https://api.github.com/repos/mbap/ipmitool/contents/{+path}","compare_url":"https://api.github.com/repos/mbap/ipmitool/compare/{base}...{head}","merges_url":"https://api.github.com/repos/mbap/ipmitool/merges","archive_url":"https://api.github.com/repos/mbap/ipmitool/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/mbap/ipmitool/downloads","issues_url":"https://api.github.com/repos/mbap/ipmitool/issues{/number}","pulls_url":"https://api.github.com/repos/mbap/ipmitool/pulls{/number}","milestones_url":"https://api.github.com/repos/mbap/ipmitool/milestones{/number}","notifications_url":"https://api.github.com/repos/mbap/ipmitool/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/mbap/ipmitool/labels{/name}","releases_url":"https://api.github.com/repos/mbap/ipmitool/releases{/id}","deployments_url":"https://api.github.com/repos/mbap/ipmitool/deployments","created_at":"2020-08-25T05:08:12Z","updated_at":"2020-10-16T04:48:48Z","pushed_at":"2020-10-16T04:48:45Z","git_url":"git://github.com/mbap/ipmitool.git","ssh_url":"[email protected]:mbap/ipmitool.git","clone_url":"https://github.com/mbap/ipmitool.git","svn_url":"https://github.com/mbap/ipmitool","homepage":"","size":2951,"stargazers_count":0,"watchers_count":0,"language":"C","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"ipmitool:master","ref":"master","sha":"7fd7c0f2ba39e223868a8d83d81d4074f057d6fc","user":{"login":"ipmitool","id":38139577,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4MTM5NTc3","avatar_url":"https://avatars2.githubusercontent.com/u/38139577?v=4","gravatar_id":"","url":"https://api.github.com/users/ipmitool","html_url":"https://github.com/ipmitool","followers_url":"https://api.github.com/users/ipmitool/followers","following_url":"https://api.github.com/users/ipmitool/following{/other_user}","gists_url":"https://api.github.com/users/ipmitool/gists{/gist_id}","starred_url":"https://api.github.com/users/ipmitool/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ipmitool/subscriptions","organizations_url":"https://api.github.com/users/ipmitool/orgs","repos_url":"https://api.github.com/users/ipmitool/repos","events_url":"https://api.github.com/users/ipmitool/events{/privacy}","received_events_url":"https://api.github.com/users/ipmitool/received_events","type":"Organization","site_admin":false},"repo":{"id":128686483,"node_id":"MDEwOlJlcG9zaXRvcnkxMjg2ODY0ODM=","name":"ipmitool","full_name":"ipmitool/ipmitool","private":false,"owner":{"login":"ipmitool","id":38139577,"node_id":"MDEyOk9yZ2FuaXphdGlvbjM4MTM5NTc3","avatar_url":"https://avatars2.githubusercontent.com/u/38139577?v=4","gravatar_id":"","url":"https://api.github.com/users/ipmitool","html_url":"https://github.com/ipmitool","followers_url":"https://api.github.com/users/ipmitool/followers","following_url":"https://api.github.com/users/ipmitool/following{/other_user}","gists_url":"https://api.github.com/users/ipmitool/gists{/gist_id}","starred_url":"https://api.github.com/users/ipmitool/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ipmitool/subscriptions","organizations_url":"https://api.github.com/users/ipmitool/orgs","repos_url":"https://api.github.com/users/ipmitool/repos","events_url":"https://api.github.com/users/ipmitool/events{/privacy}","received_events_url":"https://api.github.com/users/ipmitool/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/ipmitool/ipmitool","description":"An open-source tool for controlling IPMI-enabled systems","fork":false,"url":"https://api.github.com/repos/ipmitool/ipmitool","forks_url":"https://api.github.com/repos/ipmitool/ipmitool/forks","keys_url":"https://api.github.com/repos/ipmitool/ipmitool/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ipmitool/ipmitool/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ipmitool/ipmitool/teams","hooks_url":"https://api.github.com/repos/ipmitool/ipmitool/hooks","issue_events_url":"https://api.github.com/repos/ipmitool/ipmitool/issues/events{/number}","events_url":"https://api.github.com/repos/ipmitool/ipmitool/events","assignees_url":"https://api.github.com/repos/ipmitool/ipmitool/assignees{/user}","branches_url":"https://api.github.com/repos/ipmitool/ipmitool/branches{/branch}","tags_url":"https://api.github.com/repos/ipmitool/ipmitool/tags","blobs_url":"https://api.github.com/repos/ipmitool/ipmitool/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ipmitool/ipmitool/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ipmitool/ipmitool/git/refs{/sha}","trees_url":"https://api.github.com/repos/ipmitool/ipmitool/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ipmitool/ipmitool/statuses/{sha}","languages_url":"https://api.github.com/repos/ipmitool/ipmitool/languages","stargazers_url":"https://api.github.com/repos/ipmitool/ipmitool/stargazers","contributors_url":"https://api.github.com/repos/ipmitool/ipmitool/contributors","subscribers_url":"https://api.github.com/repos/ipmitool/ipmitool/subscribers","subscription_url":"https://api.github.com/repos/ipmitool/ipmitool/subscription","commits_url":"https://api.github.com/repos/ipmitool/ipmitool/commits{/sha}","git_commits_url":"https://api.github.com/repos/ipmitool/ipmitool/git/commits{/sha}","comments_url":"https://api.github.com/repos/ipmitool/ipmitool/comments{/number}","issue_comment_url":"https://api.github.com/repos/ipmitool/ipmitool/issues/comments{/number}","contents_url":"https://api.github.com/repos/ipmitool/ipmitool/contents/{+path}","compare_url":"https://api.github.com/repos/ipmitool/ipmitool/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ipmitool/ipmitool/merges","archive_url":"https://api.github.com/repos/ipmitool/ipmitool/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ipmitool/ipmitool/downloads","issues_url":"https://api.github.com/repos/ipmitool/ipmitool/issues{/number}","pulls_url":"https://api.github.com/repos/ipmitool/ipmitool/pulls{/number}","milestones_url":"https://api.github.com/repos/ipmitool/ipmitool/milestones{/number}","notifications_url":"https://api.github.com/repos/ipmitool/ipmitool/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ipmitool/ipmitool/labels{/name}","releases_url":"https://api.github.com/repos/ipmitool/ipmitool/releases{/id}","deployments_url":"https://api.github.com/repos/ipmitool/ipmitool/deployments","created_at":"2018-04-08T22:18:30Z","updated_at":"2020-10-15T09:12:17Z","pushed_at":"2020-10-20T14:16:49Z","git_url":"git://github.com/ipmitool/ipmitool.git","ssh_url":"[email protected]:ipmitool/ipmitool.git","clone_url":"https://github.com/ipmitool/ipmitool.git","svn_url":"https://github.com/ipmitool/ipmitool","homepage":"","size":2938,"stargazers_count":366,"watchers_count":366,"language":"C","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":147,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":91,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":147,"open_issues":91,"watchers":366,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/ipmitool/ipmitool/pulls/243"},"html":{"href":"https://github.com/ipmitool/ipmitool/pull/243"},"issue":{"href":"https://api.github.com/repos/ipmitool/ipmitool/issues/243"},"comments":{"href":"https://api.github.com/repos/ipmitool/ipmitool/issues/243/comments"},"review_comments":{"href":"https://api.github.com/repos/ipmitool/ipmitool/pulls/243/comments"},"review_comment":{"href":"https://api.github.com/repos/ipmitool/ipmitool/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/ipmitool/ipmitool/pulls/243/commits"},"statuses":{"href":"https://api.github.com/repos/ipmitool/ipmitool/statuses/fff6052d7f65109442176d6a8fbec74dccf3fdfb"}},"author_association":"NONE","active_lock_reason":null}}
|
{
"id": 128686483,
"name": "ipmitool/ipmitool",
"url": "https://api.github.com/repos/ipmitool/ipmitool"
}
|
{
"id": 4518124,
"login": "AlexanderAmelkin",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/4518124?",
"url": "https://api.github.com/users/AlexanderAmelkin"
}
|
{
"id": 38139577,
"login": "ipmitool",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/38139577?",
"url": "https://api.github.com/orgs/ipmitool"
}
| 2020-10-20T14:27:00
|
13909009627
|
{"actor":{"display_login":"AlexanderAmelkin"}}
|
CreateEvent
| true
|
{"ref":"hms-session15","ref_type":"branch","master_branch":"master","description":"Collaboration team for practice tasks","pusher_type":"user"}
|
{
"id": 295986484,
"name": "kashipai/collab-team",
"url": "https://api.github.com/repos/kashipai/collab-team"
}
|
{
"id": 71437854,
"login": "Harsha-ms1",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/71437854?",
"url": "https://api.github.com/users/Harsha-ms1"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-10-28T07:07:03
|
13997003837
|
{"actor":{"display_login":"Harsha-ms1"}}
|
DeleteEvent
| true
|
{"ref":"commit","ref_type":"branch","pusher_type":"user"}
|
{
"id": 307042712,
"name": "guanhong0420/github1025",
"url": "https://api.github.com/repos/guanhong0420/github1025"
}
|
{
"id": 73335545,
"login": "guanhong0420",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/73335545?",
"url": "https://api.github.com/users/guanhong0420"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-10-26T05:49:03
|
13967522346
|
{"actor":{"display_login":"guanhong0420"}}
|
PushEvent
| true
|
{"push_id":5898769109,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"d3efbc9b6bfc338187d827d6e99c2b31fc5e8890","before":"1230f1ed38e1862f64a456e39388d325335978b1","commits":[{"sha":"d3efbc9b6bfc338187d827d6e99c2b31fc5e8890","author":{"name":"Lvcenia","email":"d764a3f8459b1bebe474ed16aa0b552dcaf0fa2c@users.noreply.github.com"},"message":"Create node.js.yml","distinct":true,"url":"https://api.github.com/repos/Lvcenia/Lvcenia.github.io/commits/d3efbc9b6bfc338187d827d6e99c2b31fc5e8890"}]}
|
{
"id": 300595774,
"name": "Lvcenia/Lvcenia.github.io",
"url": "https://api.github.com/repos/Lvcenia/Lvcenia.github.io"
}
|
{
"id": 46130952,
"login": "Lvcenia",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/46130952?",
"url": "https://api.github.com/users/Lvcenia"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-10-22T06:37:26
|
13932076223
|
{"actor":{"display_login":"Lvcenia"}}
|
PullRequestReviewEvent
| true
|
{"action":"created","review":{"id":518840895,"node_id":"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3NTE4ODQwODk1","user":{"login":"AR-May","id":67507805,"node_id":"MDQ6VXNlcjY3NTA3ODA1","avatar_url":"https://avatars1.githubusercontent.com/u/67507805?v=4","gravatar_id":"","url":"https://api.github.com/users/AR-May","html_url":"https://github.com/AR-May","followers_url":"https://api.github.com/users/AR-May/followers","following_url":"https://api.github.com/users/AR-May/following{/other_user}","gists_url":"https://api.github.com/users/AR-May/gists{/gist_id}","starred_url":"https://api.github.com/users/AR-May/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/AR-May/subscriptions","organizations_url":"https://api.github.com/users/AR-May/orgs","repos_url":"https://api.github.com/users/AR-May/repos","events_url":"https://api.github.com/users/AR-May/events{/privacy}","received_events_url":"https://api.github.com/users/AR-May/received_events","type":"User","site_admin":false},"body":"","commit_id":"f1b66ed64733461bda0bbdc4613c4fd8570a902b","submitted_at":"2020-10-28T16:13:43Z","state":"approved","html_url":"https://github.com/dotnet/templating/pull/2608#pullrequestreview-518840895","pull_request_url":"https://api.github.com/repos/dotnet/templating/pulls/2608","author_association":"MEMBER","_links":{"html":{"href":"https://github.com/dotnet/templating/pull/2608#pullrequestreview-518840895"},"pull_request":{"href":"https://api.github.com/repos/dotnet/templating/pulls/2608"}}},"pull_request":{"url":"https://api.github.com/repos/dotnet/templating/pulls/2608","id":510704637,"node_id":"MDExOlB1bGxSZXF1ZXN0NTEwNzA0NjM3","html_url":"https://github.com/dotnet/templating/pull/2608","diff_url":"https://github.com/dotnet/templating/pull/2608.diff","patch_url":"https://github.com/dotnet/templating/pull/2608.patch","issue_url":"https://api.github.com/repos/dotnet/templating/issues/2608","number":2608,"state":"open","locked":false,"title":"Re-enabled unit tests that were previously commented out","user":{"login":"vlada-shubina","id":56045248,"node_id":"MDQ6VXNlcjU2MDQ1MjQ4","avatar_url":"https://avatars1.githubusercontent.com/u/56045248?v=4","gravatar_id":"","url":"https://api.github.com/users/vlada-shubina","html_url":"https://github.com/vlada-shubina","followers_url":"https://api.github.com/users/vlada-shubina/followers","following_url":"https://api.github.com/users/vlada-shubina/following{/other_user}","gists_url":"https://api.github.com/users/vlada-shubina/gists{/gist_id}","starred_url":"https://api.github.com/users/vlada-shubina/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vlada-shubina/subscriptions","organizations_url":"https://api.github.com/users/vlada-shubina/orgs","repos_url":"https://api.github.com/users/vlada-shubina/repos","events_url":"https://api.github.com/users/vlada-shubina/events{/privacy}","received_events_url":"https://api.github.com/users/vlada-shubina/received_events","type":"User","site_admin":false},"body":"fixes https://github.com/dotnet/templating/issues/2334\r\nfixes https://github.com/dotnet/templating/issues/1726","created_at":"2020-10-27T12:08:46Z","updated_at":"2020-10-28T16:13:43Z","closed_at":null,"merged_at":null,"merge_commit_sha":"ede43d4c35fd51a7c00013f05815dd9d317661cb","assignee":{"login":"vlada-shubina","id":56045248,"node_id":"MDQ6VXNlcjU2MDQ1MjQ4","avatar_url":"https://avatars1.githubusercontent.com/u/56045248?v=4","gravatar_id":"","url":"https://api.github.com/users/vlada-shubina","html_url":"https://github.com/vlada-shubina","followers_url":"https://api.github.com/users/vlada-shubina/followers","following_url":"https://api.github.com/users/vlada-shubina/following{/other_user}","gists_url":"https://api.github.com/users/vlada-shubina/gists{/gist_id}","starred_url":"https://api.github.com/users/vlada-shubina/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vlada-shubina/subscriptions","organizations_url":"https://api.github.com/users/vlada-shubina/orgs","repos_url":"https://api.github.com/users/vlada-shubina/repos","events_url":"https://api.github.com/users/vlada-shubina/events{/privacy}","received_events_url":"https://api.github.com/users/vlada-shubina/received_events","type":"User","site_admin":false},"assignees":[{"login":"vlada-shubina","id":56045248,"node_id":"MDQ6VXNlcjU2MDQ1MjQ4","avatar_url":"https://avatars1.githubusercontent.com/u/56045248?v=4","gravatar_id":"","url":"https://api.github.com/users/vlada-shubina","html_url":"https://github.com/vlada-shubina","followers_url":"https://api.github.com/users/vlada-shubina/followers","following_url":"https://api.github.com/users/vlada-shubina/following{/other_user}","gists_url":"https://api.github.com/users/vlada-shubina/gists{/gist_id}","starred_url":"https://api.github.com/users/vlada-shubina/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vlada-shubina/subscriptions","organizations_url":"https://api.github.com/users/vlada-shubina/orgs","repos_url":"https://api.github.com/users/vlada-shubina/repos","events_url":"https://api.github.com/users/vlada-shubina/events{/privacy}","received_events_url":"https://api.github.com/users/vlada-shubina/received_events","type":"User","site_admin":false}],"requested_reviewers":[],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/dotnet/templating/pulls/2608/commits","review_comments_url":"https://api.github.com/repos/dotnet/templating/pulls/2608/comments","review_comment_url":"https://api.github.com/repos/dotnet/templating/pulls/comments{/number}","comments_url":"https://api.github.com/repos/dotnet/templating/issues/2608/comments","statuses_url":"https://api.github.com/repos/dotnet/templating/statuses/f1b66ed64733461bda0bbdc4613c4fd8570a902b","head":{"label":"vlada-shubina:tests-fix","ref":"tests-fix","sha":"f1b66ed64733461bda0bbdc4613c4fd8570a902b","user":{"login":"vlada-shubina","id":56045248,"node_id":"MDQ6VXNlcjU2MDQ1MjQ4","avatar_url":"https://avatars1.githubusercontent.com/u/56045248?v=4","gravatar_id":"","url":"https://api.github.com/users/vlada-shubina","html_url":"https://github.com/vlada-shubina","followers_url":"https://api.github.com/users/vlada-shubina/followers","following_url":"https://api.github.com/users/vlada-shubina/following{/other_user}","gists_url":"https://api.github.com/users/vlada-shubina/gists{/gist_id}","starred_url":"https://api.github.com/users/vlada-shubina/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vlada-shubina/subscriptions","organizations_url":"https://api.github.com/users/vlada-shubina/orgs","repos_url":"https://api.github.com/users/vlada-shubina/repos","events_url":"https://api.github.com/users/vlada-shubina/events{/privacy}","received_events_url":"https://api.github.com/users/vlada-shubina/received_events","type":"User","site_admin":false},"repo":{"id":288140546,"node_id":"MDEwOlJlcG9zaXRvcnkyODgxNDA1NDY=","name":"templating","full_name":"vlada-shubina/templating","private":false,"owner":{"login":"vlada-shubina","id":56045248,"node_id":"MDQ6VXNlcjU2MDQ1MjQ4","avatar_url":"https://avatars1.githubusercontent.com/u/56045248?v=4","gravatar_id":"","url":"https://api.github.com/users/vlada-shubina","html_url":"https://github.com/vlada-shubina","followers_url":"https://api.github.com/users/vlada-shubina/followers","following_url":"https://api.github.com/users/vlada-shubina/following{/other_user}","gists_url":"https://api.github.com/users/vlada-shubina/gists{/gist_id}","starred_url":"https://api.github.com/users/vlada-shubina/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/vlada-shubina/subscriptions","organizations_url":"https://api.github.com/users/vlada-shubina/orgs","repos_url":"https://api.github.com/users/vlada-shubina/repos","events_url":"https://api.github.com/users/vlada-shubina/events{/privacy}","received_events_url":"https://api.github.com/users/vlada-shubina/received_events","type":"User","site_admin":false},"html_url":"https://github.com/vlada-shubina/templating","description":"This repo contains the Template Engine which is used by dotnet new","fork":true,"url":"https://api.github.com/repos/vlada-shubina/templating","forks_url":"https://api.github.com/repos/vlada-shubina/templating/forks","keys_url":"https://api.github.com/repos/vlada-shubina/templating/keys{/key_id}","collaborators_url":"https://api.github.com/repos/vlada-shubina/templating/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/vlada-shubina/templating/teams","hooks_url":"https://api.github.com/repos/vlada-shubina/templating/hooks","issue_events_url":"https://api.github.com/repos/vlada-shubina/templating/issues/events{/number}","events_url":"https://api.github.com/repos/vlada-shubina/templating/events","assignees_url":"https://api.github.com/repos/vlada-shubina/templating/assignees{/user}","branches_url":"https://api.github.com/repos/vlada-shubina/templating/branches{/branch}","tags_url":"https://api.github.com/repos/vlada-shubina/templating/tags","blobs_url":"https://api.github.com/repos/vlada-shubina/templating/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/vlada-shubina/templating/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/vlada-shubina/templating/git/refs{/sha}","trees_url":"https://api.github.com/repos/vlada-shubina/templating/git/trees{/sha}","statuses_url":"https://api.github.com/repos/vlada-shubina/templating/statuses/{sha}","languages_url":"https://api.github.com/repos/vlada-shubina/templating/languages","stargazers_url":"https://api.github.com/repos/vlada-shubina/templating/stargazers","contributors_url":"https://api.github.com/repos/vlada-shubina/templating/contributors","subscribers_url":"https://api.github.com/repos/vlada-shubina/templating/subscribers","subscription_url":"https://api.github.com/repos/vlada-shubina/templating/subscription","commits_url":"https://api.github.com/repos/vlada-shubina/templating/commits{/sha}","git_commits_url":"https://api.github.com/repos/vlada-shubina/templating/git/commits{/sha}","comments_url":"https://api.github.com/repos/vlada-shubina/templating/comments{/number}","issue_comment_url":"https://api.github.com/repos/vlada-shubina/templating/issues/comments{/number}","contents_url":"https://api.github.com/repos/vlada-shubina/templating/contents/{+path}","compare_url":"https://api.github.com/repos/vlada-shubina/templating/compare/{base}...{head}","merges_url":"https://api.github.com/repos/vlada-shubina/templating/merges","archive_url":"https://api.github.com/repos/vlada-shubina/templating/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/vlada-shubina/templating/downloads","issues_url":"https://api.github.com/repos/vlada-shubina/templating/issues{/number}","pulls_url":"https://api.github.com/repos/vlada-shubina/templating/pulls{/number}","milestones_url":"https://api.github.com/repos/vlada-shubina/templating/milestones{/number}","notifications_url":"https://api.github.com/repos/vlada-shubina/templating/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/vlada-shubina/templating/labels{/name}","releases_url":"https://api.github.com/repos/vlada-shubina/templating/releases{/id}","deployments_url":"https://api.github.com/repos/vlada-shubina/templating/deployments","created_at":"2020-08-17T09:40:24Z","updated_at":"2020-10-28T13:16:08Z","pushed_at":"2020-10-28T16:11:51Z","git_url":"git://github.com/vlada-shubina/templating.git","ssh_url":"[email protected]:vlada-shubina/templating.git","clone_url":"https://github.com/vlada-shubina/templating.git","svn_url":"https://github.com/vlada-shubina/templating","homepage":"https://docs.microsoft.com/dotnet/","size":10719,"stargazers_count":0,"watchers_count":0,"language":"C#","has_issues":false,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":0,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":0,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"dotnet:master","ref":"master","sha":"79d23cc62402061a47c21a4b56d77f002fdb68f9","user":{"login":"dotnet","id":9141961,"node_id":"MDEyOk9yZ2FuaXphdGlvbjkxNDE5NjE=","avatar_url":"https://avatars0.githubusercontent.com/u/9141961?v=4","gravatar_id":"","url":"https://api.github.com/users/dotnet","html_url":"https://github.com/dotnet","followers_url":"https://api.github.com/users/dotnet/followers","following_url":"https://api.github.com/users/dotnet/following{/other_user}","gists_url":"https://api.github.com/users/dotnet/gists{/gist_id}","starred_url":"https://api.github.com/users/dotnet/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dotnet/subscriptions","organizations_url":"https://api.github.com/users/dotnet/orgs","repos_url":"https://api.github.com/users/dotnet/repos","events_url":"https://api.github.com/users/dotnet/events{/privacy}","received_events_url":"https://api.github.com/users/dotnet/received_events","type":"Organization","site_admin":false},"repo":{"id":62173688,"node_id":"MDEwOlJlcG9zaXRvcnk2MjE3MzY4OA==","name":"templating","full_name":"dotnet/templating","private":false,"owner":{"login":"dotnet","id":9141961,"node_id":"MDEyOk9yZ2FuaXphdGlvbjkxNDE5NjE=","avatar_url":"https://avatars0.githubusercontent.com/u/9141961?v=4","gravatar_id":"","url":"https://api.github.com/users/dotnet","html_url":"https://github.com/dotnet","followers_url":"https://api.github.com/users/dotnet/followers","following_url":"https://api.github.com/users/dotnet/following{/other_user}","gists_url":"https://api.github.com/users/dotnet/gists{/gist_id}","starred_url":"https://api.github.com/users/dotnet/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/dotnet/subscriptions","organizations_url":"https://api.github.com/users/dotnet/orgs","repos_url":"https://api.github.com/users/dotnet/repos","events_url":"https://api.github.com/users/dotnet/events{/privacy}","received_events_url":"https://api.github.com/users/dotnet/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/dotnet/templating","description":"This repo contains the Template Engine which is used by dotnet new","fork":false,"url":"https://api.github.com/repos/dotnet/templating","forks_url":"https://api.github.com/repos/dotnet/templating/forks","keys_url":"https://api.github.com/repos/dotnet/templating/keys{/key_id}","collaborators_url":"https://api.github.com/repos/dotnet/templating/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/dotnet/templating/teams","hooks_url":"https://api.github.com/repos/dotnet/templating/hooks","issue_events_url":"https://api.github.com/repos/dotnet/templating/issues/events{/number}","events_url":"https://api.github.com/repos/dotnet/templating/events","assignees_url":"https://api.github.com/repos/dotnet/templating/assignees{/user}","branches_url":"https://api.github.com/repos/dotnet/templating/branches{/branch}","tags_url":"https://api.github.com/repos/dotnet/templating/tags","blobs_url":"https://api.github.com/repos/dotnet/templating/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/dotnet/templating/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/dotnet/templating/git/refs{/sha}","trees_url":"https://api.github.com/repos/dotnet/templating/git/trees{/sha}","statuses_url":"https://api.github.com/repos/dotnet/templating/statuses/{sha}","languages_url":"https://api.github.com/repos/dotnet/templating/languages","stargazers_url":"https://api.github.com/repos/dotnet/templating/stargazers","contributors_url":"https://api.github.com/repos/dotnet/templating/contributors","subscribers_url":"https://api.github.com/repos/dotnet/templating/subscribers","subscription_url":"https://api.github.com/repos/dotnet/templating/subscription","commits_url":"https://api.github.com/repos/dotnet/templating/commits{/sha}","git_commits_url":"https://api.github.com/repos/dotnet/templating/git/commits{/sha}","comments_url":"https://api.github.com/repos/dotnet/templating/comments{/number}","issue_comment_url":"https://api.github.com/repos/dotnet/templating/issues/comments{/number}","contents_url":"https://api.github.com/repos/dotnet/templating/contents/{+path}","compare_url":"https://api.github.com/repos/dotnet/templating/compare/{base}...{head}","merges_url":"https://api.github.com/repos/dotnet/templating/merges","archive_url":"https://api.github.com/repos/dotnet/templating/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/dotnet/templating/downloads","issues_url":"https://api.github.com/repos/dotnet/templating/issues{/number}","pulls_url":"https://api.github.com/repos/dotnet/templating/pulls{/number}","milestones_url":"https://api.github.com/repos/dotnet/templating/milestones{/number}","notifications_url":"https://api.github.com/repos/dotnet/templating/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/dotnet/templating/labels{/name}","releases_url":"https://api.github.com/repos/dotnet/templating/releases{/id}","deployments_url":"https://api.github.com/repos/dotnet/templating/deployments","created_at":"2016-06-28T20:54:16Z","updated_at":"2020-10-28T16:01:57Z","pushed_at":"2020-10-28T16:13:07Z","git_url":"git://github.com/dotnet/templating.git","ssh_url":"[email protected]:dotnet/templating.git","clone_url":"https://github.com/dotnet/templating.git","svn_url":"https://github.com/dotnet/templating","homepage":"https://docs.microsoft.com/dotnet/","size":10646,"stargazers_count":898,"watchers_count":898,"language":"C#","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":250,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":141,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"forks":250,"open_issues":141,"watchers":898,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/dotnet/templating/pulls/2608"},"html":{"href":"https://github.com/dotnet/templating/pull/2608"},"issue":{"href":"https://api.github.com/repos/dotnet/templating/issues/2608"},"comments":{"href":"https://api.github.com/repos/dotnet/templating/issues/2608/comments"},"review_comments":{"href":"https://api.github.com/repos/dotnet/templating/pulls/2608/comments"},"review_comment":{"href":"https://api.github.com/repos/dotnet/templating/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/dotnet/templating/pulls/2608/commits"},"statuses":{"href":"https://api.github.com/repos/dotnet/templating/statuses/f1b66ed64733461bda0bbdc4613c4fd8570a902b"}},"author_association":"CONTRIBUTOR","active_lock_reason":null}}
|
{
"id": 62173688,
"name": "dotnet/templating",
"url": "https://api.github.com/repos/dotnet/templating"
}
|
{
"id": 67507805,
"login": "AR-May",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/67507805?",
"url": "https://api.github.com/users/AR-May"
}
|
{
"id": 9141961,
"login": "dotnet",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/9141961?",
"url": "https://api.github.com/orgs/dotnet"
}
| 2020-10-28T16:13:44
|
14003731239
|
{"actor":{"display_login":"AR-May"}}
|
CreateEvent
| true
|
{"ref":null,"ref_type":"repository","master_branch":"main","description":null,"pusher_type":"user"}
|
{
"id": 307278589,
"name": "Nihaliniganna/enrollhealthcare",
"url": "https://api.github.com/repos/Nihaliniganna/enrollhealthcare"
}
|
{
"id": 73447180,
"login": "Nihaliniganna",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/73447180?",
"url": "https://api.github.com/users/Nihaliniganna"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-10-26T06:19:59
|
13967732630
|
{"actor":{"display_login":"Nihaliniganna"}}
|
ReleaseEvent
| true
|
{"action":"published","release":{"url":"https://api.github.com/repos/GetStream/stream-chat-react/releases/32846333","assets_url":"https://api.github.com/repos/GetStream/stream-chat-react/releases/32846333/assets","upload_url":"https://uploads.github.com/repos/GetStream/stream-chat-react/releases/32846333/assets{?name,label}","html_url":"https://github.com/GetStream/stream-chat-react/releases/tag/v3.1.6","id":32846333,"node_id":"MDc6UmVsZWFzZTMyODQ2MzMz","tag_name":"v3.1.6","target_commitish":"master","name":"","draft":false,"author":{"login":"mahboubii","id":6333141,"node_id":"MDQ6VXNlcjYzMzMxNDE=","avatar_url":"https://avatars3.githubusercontent.com/u/6333141?v=4","gravatar_id":"","url":"https://api.github.com/users/mahboubii","html_url":"https://github.com/mahboubii","followers_url":"https://api.github.com/users/mahboubii/followers","following_url":"https://api.github.com/users/mahboubii/following{/other_user}","gists_url":"https://api.github.com/users/mahboubii/gists{/gist_id}","starred_url":"https://api.github.com/users/mahboubii/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mahboubii/subscriptions","organizations_url":"https://api.github.com/users/mahboubii/orgs","repos_url":"https://api.github.com/users/mahboubii/repos","events_url":"https://api.github.com/users/mahboubii/events{/privacy}","received_events_url":"https://api.github.com/users/mahboubii/received_events","type":"User","site_admin":false},"prerelease":false,"created_at":"2020-10-21T05:25:26Z","published_at":"2020-10-21T05:29:14Z","assets":[],"tarball_url":"https://api.github.com/repos/GetStream/stream-chat-react/tarball/v3.1.6","zipball_url":"https://api.github.com/repos/GetStream/stream-chat-react/zipball/v3.1.6","body":"## Fix\r\n- `displayActions` prop is respected in `MessageOptions` component #587\r\n\r\n## Chore\r\n- `stream-chat-js` required version bumped to `2.7.x` #582"}}
|
{
"id": 170228946,
"name": "GetStream/stream-chat-react",
"url": "https://api.github.com/repos/GetStream/stream-chat-react"
}
|
{
"id": 6333141,
"login": "mahboubii",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6333141?",
"url": "https://api.github.com/users/mahboubii"
}
|
{
"id": 8597527,
"login": "GetStream",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/8597527?",
"url": "https://api.github.com/orgs/GetStream"
}
| 2020-10-21T05:29:14
|
13917220108
|
{"actor":{"display_login":"mahboubii"}}
|
CreateEvent
| true
|
{"ref":"branch-c2423bb8","ref_type":"branch","master_branch":"master","description":null,"pusher_type":"user"}
|
{
"id": 306454784,
"name": "direwolf-github/ephemeral-ci-1c7292f6",
"url": "https://api.github.com/repos/direwolf-github/ephemeral-ci-1c7292f6"
}
|
{
"id": 10810283,
"login": "direwolf-github",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/10810283?",
"url": "https://api.github.com/users/direwolf-github"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-10-22T20:45:27
|
13942273616
|
{"actor":{"display_login":"direwolf-github"}}
|
PushEvent
| true
|
{"push_id":5006416416,"size":1,"distinct_size":1,"ref":"refs/heads/filcloud-arm","head":"3583eea1bb53731390dac24bf23d8bd816f60825","before":"045e0cb82c835f4332c8d37b34f6cb96dc06921b","commits":[{"sha":"3583eea1bb53731390dac24bf23d8bd816f60825","author":{"name":"RideWindX","email":"[email protected]"},"message":"Add layer_labels_cache for generate_labels","distinct":true,"url":"https://api.github.com/repos/filcloud/rust-fil-proofs/commits/3583eea1bb53731390dac24bf23d8bd816f60825"}]}
|
{
"id": 197691765,
"name": "filcloud/rust-fil-proofs",
"url": "https://api.github.com/repos/filcloud/rust-fil-proofs"
}
|
{
"id": 1844879,
"login": "ridewindx",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1844879?",
"url": "https://api.github.com/users/ridewindx"
}
|
{
"id": 49806224,
"login": "filcloud",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/49806224?",
"url": "https://api.github.com/orgs/filcloud"
}
| 2020-05-01T12:50:06
|
12215410987
|
{"actor":{"display_login":"ridewindx"}}
|
PushEvent
| true
|
{"push_id":5879007815,"size":1,"distinct_size":1,"ref":"refs/heads/main","head":"28391e42ade0e6c8a9c15c325e6dfe0f2105385a","before":"dab6289addd6b46304f4cffd0093f233b1d3a7ad","commits":[{"sha":"28391e42ade0e6c8a9c15c325e6dfe0f2105385a","author":{"name":"dbraunlich","email":"[email protected]"},"message":"README comitted","distinct":true,"url":"https://api.github.com/repos/3ahmns2021-mtin-3h/00inclass-firstGitHubRepo-dbraun/commits/28391e42ade0e6c8a9c15c325e6dfe0f2105385a"}]}
|
{
"id": 305351422,
"name": "3ahmns2021-mtin-3h/00inclass-firstGitHubRepo-dbraun",
"url": "https://api.github.com/repos/3ahmns2021-mtin-3h/00inclass-firstGitHubRepo-dbraun"
}
|
{
"id": 72389971,
"login": "dbraunlich",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/72389971?",
"url": "https://api.github.com/users/dbraunlich"
}
|
{
"id": 71989817,
"login": "3ahmns2021-mtin-3h",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/71989817?",
"url": "https://api.github.com/orgs/3ahmns2021-mtin-3h"
}
| 2020-10-19T11:22:58
|
13891893345
|
{"actor":{"display_login":"dbraunlich"}}
|
PullRequestReviewCommentEvent
| true
|
{"action":"created","comment":{"url":"https://api.github.com/repos/section-io/engineering-education/pulls/comments/507841115","pull_request_review_id":511882781,"id":507841115,"node_id":"MDI0OlB1bGxSZXF1ZXN0UmV2aWV3Q29tbWVudDUwNzg0MTExNQ==","diff_hunk":"@@ -0,0 +1,216 @@\n+---\n+layout: engineering-education\n+status: publish\n+published: true\n+url: /engineering-education/python-database-programming-sqlite/\n+title: Python Database Programming - SQLite\n+description: In this tutorial we will learn how to use the Python SQLite library, how to interact with it, and execute queries within a Python application.\n+author: ahmad-mardeni\n+date: 2020-10-15T00:00:00-14:00\n+topics: [Languages]\n+excerpt_separator: <!--more-->\n+images:\n+\n+ - url: /engineering-education/python-database-programming-sqlite/hero.png\n+ alt: SQLite example image Python SQLite library\n+---\n+SQLite is an open-source and simple database engine that allows you to create a relational database and interact with it, In general, it is very lightweight and can be used within almost all programming languages including Python.\n+<!--more-->\n+\n+### Why SQLite?\n+- Scalability\n+- Concurrency\n+- Centralization\n+- Control\n+\n+#### In this tutorial, you’ll learn how to:\n+- **Install** SQLite and how to get started.\n+- **Connect** SQLite with Python.\n+- **Creating** tables.\n+- **Perform** common database queries with Python application.\n+\n+### Install SQLite:\n+For **Windows** users use this command in your terminal:\n+\n+```bash\n+pip install db-sqlite3\n+\n+```\n+for **Linux** users you can use:\n+\n+```bash\n+sudo apt-get install sqlite\n+```\n+\n+In this tutorial, we will use **DB Browser for SQLite**, you can download it from [here](https://sqlitebrowser.org/dl/)","path":"articles/python-database-programming-sqlite/index.md","position":45,"original_position":45,"commit_id":"ad1b2ff1f9c435bc12c1dc6bbb34a067297f3b97","original_commit_id":"ad1b2ff1f9c435bc12c1dc6bbb34a067297f3b97","user":{"login":"mhoulmiere","id":57363929,"node_id":"MDQ6VXNlcjU3MzYzOTI5","avatar_url":"https://avatars0.githubusercontent.com/u/57363929?v=4","gravatar_id":"","url":"https://api.github.com/users/mhoulmiere","html_url":"https://github.com/mhoulmiere","followers_url":"https://api.github.com/users/mhoulmiere/followers","following_url":"https://api.github.com/users/mhoulmiere/following{/other_user}","gists_url":"https://api.github.com/users/mhoulmiere/gists{/gist_id}","starred_url":"https://api.github.com/users/mhoulmiere/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/mhoulmiere/subscriptions","organizations_url":"https://api.github.com/users/mhoulmiere/orgs","repos_url":"https://api.github.com/users/mhoulmiere/repos","events_url":"https://api.github.com/users/mhoulmiere/events{/privacy}","received_events_url":"https://api.github.com/users/mhoulmiere/received_events","type":"User","site_admin":false},"body":"Missing the period at the end of the sentence.","created_at":"2020-10-19T15:22:52Z","updated_at":"2020-10-19T15:22:52Z","html_url":"https://github.com/section-io/engineering-education/pull/442#discussion_r507841115","pull_request_url":"https://api.github.com/repos/section-io/engineering-education/pulls/442","author_association":"NONE","_links":{"self":{"href":"https://api.github.com/repos/section-io/engineering-education/pulls/comments/507841115"},"html":{"href":"https://github.com/section-io/engineering-education/pull/442#discussion_r507841115"},"pull_request":{"href":"https://api.github.com/repos/section-io/engineering-education/pulls/442"}},"start_line":null,"original_start_line":null,"start_side":null,"line":45,"original_line":45,"side":"RIGHT"},"pull_request":{"url":"https://api.github.com/repos/section-io/engineering-education/pulls/442","id":499513096,"node_id":"MDExOlB1bGxSZXF1ZXN0NDk5NTEzMDk2","html_url":"https://github.com/section-io/engineering-education/pull/442","diff_url":"https://github.com/section-io/engineering-education/pull/442.diff","patch_url":"https://github.com/section-io/engineering-education/pull/442.patch","issue_url":"https://api.github.com/repos/section-io/engineering-education/issues/442","number":442,"state":"open","locked":false,"title":"Python Database Programming : SQLite","user":{"login":"ahmadmardeni1","id":63211822,"node_id":"MDQ6VXNlcjYzMjExODIy","avatar_url":"https://avatars1.githubusercontent.com/u/63211822?v=4","gravatar_id":"","url":"https://api.github.com/users/ahmadmardeni1","html_url":"https://github.com/ahmadmardeni1","followers_url":"https://api.github.com/users/ahmadmardeni1/followers","following_url":"https://api.github.com/users/ahmadmardeni1/following{/other_user}","gists_url":"https://api.github.com/users/ahmadmardeni1/gists{/gist_id}","starred_url":"https://api.github.com/users/ahmadmardeni1/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ahmadmardeni1/subscriptions","organizations_url":"https://api.github.com/users/ahmadmardeni1/orgs","repos_url":"https://api.github.com/users/ahmadmardeni1/repos","events_url":"https://api.github.com/users/ahmadmardeni1/events{/privacy}","received_events_url":"https://api.github.com/users/ahmadmardeni1/received_events","type":"User","site_admin":false},"body":"### Article Checklist\r\n#### Preliminary Checks - Formatting and Structure \r\n- [x] Does your article follow any of the suggested structure formats? - **see [example formats](https://github.com/section-io/engineering-education/blob/master/CONTRIBUTING.md#example-format-structure)**\r\n- [x] Is your article properly formatted in Markdown? - **see [Github Markdown guide](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet)**\r\n- [x] Have you used the correct folder and file structure? - **see [Contribution Guidelines](https://github.com/section-io/engineering-education/blob/master/CONTRIBUTING.md)**\r\n- [x] Is your article over 750 words? - **Tool**: [Wordcounter.net](https://wordcounter.net)\r\n- [x] Have you used our preferred heading structure? - **[H3 (###) and up](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet#headers)**\r\n- [x] Does your article provide enough value and detail about your topic? - **Articles should be clear, accurate, and fully explained.**\r\n- [x] Can your article be understood by beginners? - **Assume the audience is smart but has no prior exposure to the common terminology in your article.**\r\n- [x] Have you included a hero image that is 600x400 pixels and have the copyright to use it? - **Tools:** [Pixlr Image Editor](https://pixlr.com/e) for resizing and [Unsplash](https://unsplash.com) for Creative Commons images\r\n- [x] In your PR - add a comment that states **[\"This fixes #(enter your Idea Content Form #)\"](https://youtu.be/TKJ4RdhyB5Y?t=278)** to link and close your Idea Content (issue) when the PR is merged.\r\n \r\n\r\n#### Grammar Checks\r\n- [x] Have you spellchecked and grammar checked your article? - **Tool:** [Grammarly](https://grammarly.com)\r\n- [x] Have you checked your article for readability? - **Tool:** [Hemmingway](http://www.hemingwayapp.com)\r\n- [ ] Have you added sources for quotes and images that aren't yours?\r\n\r\n#### Technical Checks\r\n- [x] Are your code snippets properly formatted for syntax highlighting - **see [Syntax guide](https://gohugo.io/content-management/syntax-highlighting)**\r\n- [x] Have you used Repl.it for your code snippets?\r\n\r\n### Contribution Guidelines\r\nFor first-time contributors and for more details, **see [Contributing Guidelines](https://github.com/section-io/engineering-education/blob/master/CONTRIBUTING.md)**\r\n\r\nthis fixes #430","created_at":"2020-10-07T20:58:04Z","updated_at":"2020-10-19T15:22:52Z","closed_at":null,"merged_at":null,"merge_commit_sha":"88d146c4bf351d710cbf0017b07e76c6c8385603","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":1514354845,"node_id":"MDU6TGFiZWwxNTE0MzU0ODQ1","url":"https://api.github.com/repos/section-io/engineering-education/labels/assigned%20for%20review","name":"assigned for review","color":"e4e669","default":false,"description":"Assigned to a Section team member for review."},{"id":2175295264,"node_id":"MDU6TGFiZWwyMTc1Mjk1MjY0","url":"https://api.github.com/repos/section-io/engineering-education/labels/tech%20review","name":"tech review","color":"db2979","default":false,"description":"Formatting has been reviewed and article has been passed along for final tech review."}],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/section-io/engineering-education/pulls/442/commits","review_comments_url":"https://api.github.com/repos/section-io/engineering-education/pulls/442/comments","review_comment_url":"https://api.github.com/repos/section-io/engineering-education/pulls/comments{/number}","comments_url":"https://api.github.com/repos/section-io/engineering-education/issues/442/comments","statuses_url":"https://api.github.com/repos/section-io/engineering-education/statuses/ad1b2ff1f9c435bc12c1dc6bbb34a067297f3b97","head":{"label":"ahmadmardeni1:master","ref":"master","sha":"ad1b2ff1f9c435bc12c1dc6bbb34a067297f3b97","user":{"login":"ahmadmardeni1","id":63211822,"node_id":"MDQ6VXNlcjYzMjExODIy","avatar_url":"https://avatars1.githubusercontent.com/u/63211822?v=4","gravatar_id":"","url":"https://api.github.com/users/ahmadmardeni1","html_url":"https://github.com/ahmadmardeni1","followers_url":"https://api.github.com/users/ahmadmardeni1/followers","following_url":"https://api.github.com/users/ahmadmardeni1/following{/other_user}","gists_url":"https://api.github.com/users/ahmadmardeni1/gists{/gist_id}","starred_url":"https://api.github.com/users/ahmadmardeni1/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ahmadmardeni1/subscriptions","organizations_url":"https://api.github.com/users/ahmadmardeni1/orgs","repos_url":"https://api.github.com/users/ahmadmardeni1/repos","events_url":"https://api.github.com/users/ahmadmardeni1/events{/privacy}","received_events_url":"https://api.github.com/users/ahmadmardeni1/received_events","type":"User","site_admin":false},"repo":{"id":301761077,"node_id":"MDEwOlJlcG9zaXRvcnkzMDE3NjEwNzc=","name":"engineering-education","full_name":"ahmadmardeni1/engineering-education","private":false,"owner":{"login":"ahmadmardeni1","id":63211822,"node_id":"MDQ6VXNlcjYzMjExODIy","avatar_url":"https://avatars1.githubusercontent.com/u/63211822?v=4","gravatar_id":"","url":"https://api.github.com/users/ahmadmardeni1","html_url":"https://github.com/ahmadmardeni1","followers_url":"https://api.github.com/users/ahmadmardeni1/followers","following_url":"https://api.github.com/users/ahmadmardeni1/following{/other_user}","gists_url":"https://api.github.com/users/ahmadmardeni1/gists{/gist_id}","starred_url":"https://api.github.com/users/ahmadmardeni1/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ahmadmardeni1/subscriptions","organizations_url":"https://api.github.com/users/ahmadmardeni1/orgs","repos_url":"https://api.github.com/users/ahmadmardeni1/repos","events_url":"https://api.github.com/users/ahmadmardeni1/events{/privacy}","received_events_url":"https://api.github.com/users/ahmadmardeni1/received_events","type":"User","site_admin":false},"html_url":"https://github.com/ahmadmardeni1/engineering-education","description":"A community-generated pool of educational content which is useful for engineers of every level. ","fork":true,"url":"https://api.github.com/repos/ahmadmardeni1/engineering-education","forks_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/forks","keys_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/keys{/key_id}","collaborators_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/teams","hooks_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/hooks","issue_events_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/issues/events{/number}","events_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/events","assignees_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/assignees{/user}","branches_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/branches{/branch}","tags_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/tags","blobs_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/git/refs{/sha}","trees_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/git/trees{/sha}","statuses_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/statuses/{sha}","languages_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/languages","stargazers_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/stargazers","contributors_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/contributors","subscribers_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/subscribers","subscription_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/subscription","commits_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/commits{/sha}","git_commits_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/git/commits{/sha}","comments_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/comments{/number}","issue_comment_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/issues/comments{/number}","contents_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/contents/{+path}","compare_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/compare/{base}...{head}","merges_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/merges","archive_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/downloads","issues_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/issues{/number}","pulls_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/pulls{/number}","milestones_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/milestones{/number}","notifications_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/labels{/name}","releases_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/releases{/id}","deployments_url":"https://api.github.com/repos/ahmadmardeni1/engineering-education/deployments","created_at":"2020-10-06T14:50:11Z","updated_at":"2020-10-15T19:19:05Z","pushed_at":"2020-10-15T19:19:03Z","git_url":"git://github.com/ahmadmardeni1/engineering-education.git","ssh_url":"[email protected]:ahmadmardeni1/engineering-education.git","clone_url":"https://github.com/ahmadmardeni1/engineering-education.git","svn_url":"https://github.com/ahmadmardeni1/engineering-education","homepage":null,"size":135604,"stargazers_count":0,"watchers_count":0,"language":null,"has_issues":false,"has_projects":true,"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":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"forks":0,"open_issues":0,"watchers":0,"default_branch":"master"}},"base":{"label":"section-io:master","ref":"master","sha":"58283d1d09ed72471b63dec0593966154fe4b3bc","user":{"login":"section-io","id":10540200,"node_id":"MDEyOk9yZ2FuaXphdGlvbjEwNTQwMjAw","avatar_url":"https://avatars2.githubusercontent.com/u/10540200?v=4","gravatar_id":"","url":"https://api.github.com/users/section-io","html_url":"https://github.com/section-io","followers_url":"https://api.github.com/users/section-io/followers","following_url":"https://api.github.com/users/section-io/following{/other_user}","gists_url":"https://api.github.com/users/section-io/gists{/gist_id}","starred_url":"https://api.github.com/users/section-io/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/section-io/subscriptions","organizations_url":"https://api.github.com/users/section-io/orgs","repos_url":"https://api.github.com/users/section-io/repos","events_url":"https://api.github.com/users/section-io/events{/privacy}","received_events_url":"https://api.github.com/users/section-io/received_events","type":"Organization","site_admin":false},"repo":{"id":203874269,"node_id":"MDEwOlJlcG9zaXRvcnkyMDM4NzQyNjk=","name":"engineering-education","full_name":"section-io/engineering-education","private":false,"owner":{"login":"section-io","id":10540200,"node_id":"MDEyOk9yZ2FuaXphdGlvbjEwNTQwMjAw","avatar_url":"https://avatars2.githubusercontent.com/u/10540200?v=4","gravatar_id":"","url":"https://api.github.com/users/section-io","html_url":"https://github.com/section-io","followers_url":"https://api.github.com/users/section-io/followers","following_url":"https://api.github.com/users/section-io/following{/other_user}","gists_url":"https://api.github.com/users/section-io/gists{/gist_id}","starred_url":"https://api.github.com/users/section-io/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/section-io/subscriptions","organizations_url":"https://api.github.com/users/section-io/orgs","repos_url":"https://api.github.com/users/section-io/repos","events_url":"https://api.github.com/users/section-io/events{/privacy}","received_events_url":"https://api.github.com/users/section-io/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/section-io/engineering-education","description":"A community-generated pool of educational content which is useful for engineers of every level. ","fork":false,"url":"https://api.github.com/repos/section-io/engineering-education","forks_url":"https://api.github.com/repos/section-io/engineering-education/forks","keys_url":"https://api.github.com/repos/section-io/engineering-education/keys{/key_id}","collaborators_url":"https://api.github.com/repos/section-io/engineering-education/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/section-io/engineering-education/teams","hooks_url":"https://api.github.com/repos/section-io/engineering-education/hooks","issue_events_url":"https://api.github.com/repos/section-io/engineering-education/issues/events{/number}","events_url":"https://api.github.com/repos/section-io/engineering-education/events","assignees_url":"https://api.github.com/repos/section-io/engineering-education/assignees{/user}","branches_url":"https://api.github.com/repos/section-io/engineering-education/branches{/branch}","tags_url":"https://api.github.com/repos/section-io/engineering-education/tags","blobs_url":"https://api.github.com/repos/section-io/engineering-education/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/section-io/engineering-education/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/section-io/engineering-education/git/refs{/sha}","trees_url":"https://api.github.com/repos/section-io/engineering-education/git/trees{/sha}","statuses_url":"https://api.github.com/repos/section-io/engineering-education/statuses/{sha}","languages_url":"https://api.github.com/repos/section-io/engineering-education/languages","stargazers_url":"https://api.github.com/repos/section-io/engineering-education/stargazers","contributors_url":"https://api.github.com/repos/section-io/engineering-education/contributors","subscribers_url":"https://api.github.com/repos/section-io/engineering-education/subscribers","subscription_url":"https://api.github.com/repos/section-io/engineering-education/subscription","commits_url":"https://api.github.com/repos/section-io/engineering-education/commits{/sha}","git_commits_url":"https://api.github.com/repos/section-io/engineering-education/git/commits{/sha}","comments_url":"https://api.github.com/repos/section-io/engineering-education/comments{/number}","issue_comment_url":"https://api.github.com/repos/section-io/engineering-education/issues/comments{/number}","contents_url":"https://api.github.com/repos/section-io/engineering-education/contents/{+path}","compare_url":"https://api.github.com/repos/section-io/engineering-education/compare/{base}...{head}","merges_url":"https://api.github.com/repos/section-io/engineering-education/merges","archive_url":"https://api.github.com/repos/section-io/engineering-education/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/section-io/engineering-education/downloads","issues_url":"https://api.github.com/repos/section-io/engineering-education/issues{/number}","pulls_url":"https://api.github.com/repos/section-io/engineering-education/pulls{/number}","milestones_url":"https://api.github.com/repos/section-io/engineering-education/milestones{/number}","notifications_url":"https://api.github.com/repos/section-io/engineering-education/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/section-io/engineering-education/labels{/name}","releases_url":"https://api.github.com/repos/section-io/engineering-education/releases{/id}","deployments_url":"https://api.github.com/repos/section-io/engineering-education/deployments","created_at":"2019-08-22T21:13:02Z","updated_at":"2020-10-19T03:55:23Z","pushed_at":"2020-10-19T09:53:05Z","git_url":"git://github.com/section-io/engineering-education.git","ssh_url":"[email protected]:section-io/engineering-education.git","clone_url":"https://github.com/section-io/engineering-education.git","svn_url":"https://github.com/section-io/engineering-education","homepage":null,"size":149058,"stargazers_count":27,"watchers_count":27,"language":null,"has_issues":true,"has_projects":false,"has_downloads":true,"has_wiki":false,"has_pages":false,"forks_count":78,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":85,"license":{"key":"apache-2.0","name":"Apache License 2.0","spdx_id":"Apache-2.0","url":"https://api.github.com/licenses/apache-2.0","node_id":"MDc6TGljZW5zZTI="},"forks":78,"open_issues":85,"watchers":27,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/section-io/engineering-education/pulls/442"},"html":{"href":"https://github.com/section-io/engineering-education/pull/442"},"issue":{"href":"https://api.github.com/repos/section-io/engineering-education/issues/442"},"comments":{"href":"https://api.github.com/repos/section-io/engineering-education/issues/442/comments"},"review_comments":{"href":"https://api.github.com/repos/section-io/engineering-education/pulls/442/comments"},"review_comment":{"href":"https://api.github.com/repos/section-io/engineering-education/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/section-io/engineering-education/pulls/442/commits"},"statuses":{"href":"https://api.github.com/repos/section-io/engineering-education/statuses/ad1b2ff1f9c435bc12c1dc6bbb34a067297f3b97"}},"author_association":"NONE","active_lock_reason":null}}
|
{
"id": 203874269,
"name": "section-io/engineering-education",
"url": "https://api.github.com/repos/section-io/engineering-education"
}
|
{
"id": 57363929,
"login": "mhoulmiere",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/57363929?",
"url": "https://api.github.com/users/mhoulmiere"
}
|
{
"id": 10540200,
"login": "section-io",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/10540200?",
"url": "https://api.github.com/orgs/section-io"
}
| 2020-10-19T15:22:52
|
13895042218
|
{"actor":{"display_login":"mhoulmiere"}}
|
CreateEvent
| true
|
{"ref":"master","ref_type":"branch","master_branch":"master","description":null,"pusher_type":"user"}
|
{
"id": 305433916,
"name": "rofamiegarces/activities_rofamiegarces",
"url": "https://api.github.com/repos/rofamiegarces/activities_rofamiegarces"
}
|
{
"id": 72960255,
"login": "rofamiegarces",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/72960255?",
"url": "https://api.github.com/users/rofamiegarces"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-10-19T15:43:24
|
13895328287
|
{"actor":{"display_login":"rofamiegarces"}}
|
PushEvent
| true
|
{"push_id":5889914339,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"6ea33f9bc1526a8f6f18dbe53d4e945efc32f44a","before":"ff651af0e9ace04b79e580621ac440015c5573c7","commits":[{"sha":"6ea33f9bc1526a8f6f18dbe53d4e945efc32f44a","author":{"name":"Jack","email":"[email protected]"},"message":"init","distinct":true,"url":"https://api.github.com/repos/demslipp/Prototype2/commits/6ea33f9bc1526a8f6f18dbe53d4e945efc32f44a"}]}
|
{
"id": 305830848,
"name": "demslipp/Prototype2",
"url": "https://api.github.com/repos/demslipp/Prototype2"
}
|
{
"id": 45172715,
"login": "demslipp",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/45172715?",
"url": "https://api.github.com/users/demslipp"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-10-20T21:39:14
|
13914164494
|
{"actor":{"display_login":"demslipp"}}
|
CreateEvent
| true
|
{"ref":null,"ref_type":"repository","master_branch":"master","description":"Empty Repository created by CFN","pusher_type":"user"}
|
{
"id": 307965713,
"name": "devhub-blue-sea/org-public-empty-repo-ap-south-1",
"url": "https://api.github.com/repos/devhub-blue-sea/org-public-empty-repo-ap-south-1"
}
|
{
"id": 53108186,
"login": "codestar-github-bot-1",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/53108186?",
"url": "https://api.github.com/users/codestar-github-bot-1"
}
|
{
"id": 53108288,
"login": "devhub-blue-sea",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/53108288?",
"url": "https://api.github.com/orgs/devhub-blue-sea"
}
| 2020-10-28T09:25:57
|
13998407771
|
{"actor":{"display_login":"codestar-github-bot-1"}}
|
PushEvent
| true
|
{"push_id":5891776172,"size":1,"distinct_size":1,"ref":"refs/heads/wix-forms","head":"29b3cf4cd2faf8978e570d9776c9d29f1ba4be6a","before":"86fa65cd796e73d3f2a500676ec3fef39e89cd20","commits":[{"sha":"29b3cf4cd2faf8978e570d9776c9d29f1ba4be6a","author":{"name":"Wixplorer","email":"[email protected]"},"message":"Auto commit from WixDocs server","distinct":true,"url":"https://api.github.com/repos/wix-incubator/wix-rest-docs/commits/29b3cf4cd2faf8978e570d9776c9d29f1ba4be6a"}]}
|
{
"id": 253472367,
"name": "wix-incubator/wix-rest-docs",
"url": "https://api.github.com/repos/wix-incubator/wix-rest-docs"
}
|
{
"id": 13942667,
"login": "orgeva",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/13942667?",
"url": "https://api.github.com/users/orgeva"
}
|
{
"id": 37068588,
"login": "wix-incubator",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/37068588?",
"url": "https://api.github.com/orgs/wix-incubator"
}
| 2020-10-21T06:39:17
|
13917798440
|
{"actor":{"display_login":"orgeva"}}
|
PullRequestEvent
| true
|
{"action":"closed","number":3348,"pull_request":{"url":"https://api.github.com/repos/GSA/digitalgov.gov/pulls/3348","id":507100806,"node_id":"MDExOlB1bGxSZXF1ZXN0NTA3MTAwODA2","html_url":"https://github.com/GSA/digitalgov.gov/pull/3348","diff_url":"https://github.com/GSA/digitalgov.gov/pull/3348.diff","patch_url":"https://github.com/GSA/digitalgov.gov/pull/3348.patch","issue_url":"https://api.github.com/repos/GSA/digitalgov.gov/issues/3348","number":3348,"state":"closed","locked":false,"title":"Add crazyegg script","user":{"login":"saracope","id":2197515,"node_id":"MDQ6VXNlcjIxOTc1MTU=","avatar_url":"https://avatars0.githubusercontent.com/u/2197515?v=4","gravatar_id":"","url":"https://api.github.com/users/saracope","html_url":"https://github.com/saracope","followers_url":"https://api.github.com/users/saracope/followers","following_url":"https://api.github.com/users/saracope/following{/other_user}","gists_url":"https://api.github.com/users/saracope/gists{/gist_id}","starred_url":"https://api.github.com/users/saracope/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/saracope/subscriptions","organizations_url":"https://api.github.com/users/saracope/orgs","repos_url":"https://api.github.com/users/saracope/repos","events_url":"https://api.github.com/users/saracope/events{/privacy}","received_events_url":"https://api.github.com/users/saracope/received_events","type":"User","site_admin":false},"body":"This PR implements the following **changes:**\r\n\r\n* Adds a script for using crazyegg to the head layout partial\r\n\r\n","created_at":"2020-10-20T21:15:23Z","updated_at":"2020-10-20T21:35:57Z","closed_at":"2020-10-20T21:35:57Z","merged_at":"2020-10-20T21:35:57Z","merge_commit_sha":"1f3320eca4d3963b77ca792a4cf9eb04d7c60e16","assignee":null,"assignees":[],"requested_reviewers":[],"requested_teams":[],"labels":[{"id":731968153,"node_id":"MDU6TGFiZWw3MzE5NjgxNTM=","url":"https://api.github.com/repos/GSA/digitalgov.gov/labels/Dev:%20frontend","name":"Dev: frontend","color":"2e2c40","default":false,"description":"ideas and issues related to the presentation layer of the site"}],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/GSA/digitalgov.gov/pulls/3348/commits","review_comments_url":"https://api.github.com/repos/GSA/digitalgov.gov/pulls/3348/comments","review_comment_url":"https://api.github.com/repos/GSA/digitalgov.gov/pulls/comments{/number}","comments_url":"https://api.github.com/repos/GSA/digitalgov.gov/issues/3348/comments","statuses_url":"https://api.github.com/repos/GSA/digitalgov.gov/statuses/864bd554f35409254bf4aae32db51be125f65b7f","head":{"label":"GSA:sc_add-crazyegg","ref":"sc_add-crazyegg","sha":"864bd554f35409254bf4aae32db51be125f65b7f","user":{"login":"GSA","id":643070,"node_id":"MDEyOk9yZ2FuaXphdGlvbjY0MzA3MA==","avatar_url":"https://avatars3.githubusercontent.com/u/643070?v=4","gravatar_id":"","url":"https://api.github.com/users/GSA","html_url":"https://github.com/GSA","followers_url":"https://api.github.com/users/GSA/followers","following_url":"https://api.github.com/users/GSA/following{/other_user}","gists_url":"https://api.github.com/users/GSA/gists{/gist_id}","starred_url":"https://api.github.com/users/GSA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GSA/subscriptions","organizations_url":"https://api.github.com/users/GSA/orgs","repos_url":"https://api.github.com/users/GSA/repos","events_url":"https://api.github.com/users/GSA/events{/privacy}","received_events_url":"https://api.github.com/users/GSA/received_events","type":"Organization","site_admin":false},"repo":{"id":99720428,"node_id":"MDEwOlJlcG9zaXRvcnk5OTcyMDQyOA==","name":"digitalgov.gov","full_name":"GSA/digitalgov.gov","private":false,"owner":{"login":"GSA","id":643070,"node_id":"MDEyOk9yZ2FuaXphdGlvbjY0MzA3MA==","avatar_url":"https://avatars3.githubusercontent.com/u/643070?v=4","gravatar_id":"","url":"https://api.github.com/users/GSA","html_url":"https://github.com/GSA","followers_url":"https://api.github.com/users/GSA/followers","following_url":"https://api.github.com/users/GSA/following{/other_user}","gists_url":"https://api.github.com/users/GSA/gists{/gist_id}","starred_url":"https://api.github.com/users/GSA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GSA/subscriptions","organizations_url":"https://api.github.com/users/GSA/orgs","repos_url":"https://api.github.com/users/GSA/repos","events_url":"https://api.github.com/users/GSA/events{/privacy}","received_events_url":"https://api.github.com/users/GSA/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/GSA/digitalgov.gov","description":"Digital.gov — Helping the government community deliver better digital services.","fork":false,"url":"https://api.github.com/repos/GSA/digitalgov.gov","forks_url":"https://api.github.com/repos/GSA/digitalgov.gov/forks","keys_url":"https://api.github.com/repos/GSA/digitalgov.gov/keys{/key_id}","collaborators_url":"https://api.github.com/repos/GSA/digitalgov.gov/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/GSA/digitalgov.gov/teams","hooks_url":"https://api.github.com/repos/GSA/digitalgov.gov/hooks","issue_events_url":"https://api.github.com/repos/GSA/digitalgov.gov/issues/events{/number}","events_url":"https://api.github.com/repos/GSA/digitalgov.gov/events","assignees_url":"https://api.github.com/repos/GSA/digitalgov.gov/assignees{/user}","branches_url":"https://api.github.com/repos/GSA/digitalgov.gov/branches{/branch}","tags_url":"https://api.github.com/repos/GSA/digitalgov.gov/tags","blobs_url":"https://api.github.com/repos/GSA/digitalgov.gov/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/GSA/digitalgov.gov/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/GSA/digitalgov.gov/git/refs{/sha}","trees_url":"https://api.github.com/repos/GSA/digitalgov.gov/git/trees{/sha}","statuses_url":"https://api.github.com/repos/GSA/digitalgov.gov/statuses/{sha}","languages_url":"https://api.github.com/repos/GSA/digitalgov.gov/languages","stargazers_url":"https://api.github.com/repos/GSA/digitalgov.gov/stargazers","contributors_url":"https://api.github.com/repos/GSA/digitalgov.gov/contributors","subscribers_url":"https://api.github.com/repos/GSA/digitalgov.gov/subscribers","subscription_url":"https://api.github.com/repos/GSA/digitalgov.gov/subscription","commits_url":"https://api.github.com/repos/GSA/digitalgov.gov/commits{/sha}","git_commits_url":"https://api.github.com/repos/GSA/digitalgov.gov/git/commits{/sha}","comments_url":"https://api.github.com/repos/GSA/digitalgov.gov/comments{/number}","issue_comment_url":"https://api.github.com/repos/GSA/digitalgov.gov/issues/comments{/number}","contents_url":"https://api.github.com/repos/GSA/digitalgov.gov/contents/{+path}","compare_url":"https://api.github.com/repos/GSA/digitalgov.gov/compare/{base}...{head}","merges_url":"https://api.github.com/repos/GSA/digitalgov.gov/merges","archive_url":"https://api.github.com/repos/GSA/digitalgov.gov/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/GSA/digitalgov.gov/downloads","issues_url":"https://api.github.com/repos/GSA/digitalgov.gov/issues{/number}","pulls_url":"https://api.github.com/repos/GSA/digitalgov.gov/pulls{/number}","milestones_url":"https://api.github.com/repos/GSA/digitalgov.gov/milestones{/number}","notifications_url":"https://api.github.com/repos/GSA/digitalgov.gov/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/GSA/digitalgov.gov/labels{/name}","releases_url":"https://api.github.com/repos/GSA/digitalgov.gov/releases{/id}","deployments_url":"https://api.github.com/repos/GSA/digitalgov.gov/deployments","created_at":"2017-08-08T17:44:43Z","updated_at":"2020-10-20T21:24:01Z","pushed_at":"2020-10-20T21:35:57Z","git_url":"git://github.com/GSA/digitalgov.gov.git","ssh_url":"[email protected]:GSA/digitalgov.gov.git","clone_url":"https://github.com/GSA/digitalgov.gov.git","svn_url":"https://github.com/GSA/digitalgov.gov","homepage":"https://digital.gov","size":557196,"stargazers_count":91,"watchers_count":91,"language":"HTML","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":143,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":55,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":143,"open_issues":55,"watchers":91,"default_branch":"main"}},"base":{"label":"GSA:main","ref":"main","sha":"2a71e09b9c9da4b9af846859107d319dc071bbac","user":{"login":"GSA","id":643070,"node_id":"MDEyOk9yZ2FuaXphdGlvbjY0MzA3MA==","avatar_url":"https://avatars3.githubusercontent.com/u/643070?v=4","gravatar_id":"","url":"https://api.github.com/users/GSA","html_url":"https://github.com/GSA","followers_url":"https://api.github.com/users/GSA/followers","following_url":"https://api.github.com/users/GSA/following{/other_user}","gists_url":"https://api.github.com/users/GSA/gists{/gist_id}","starred_url":"https://api.github.com/users/GSA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GSA/subscriptions","organizations_url":"https://api.github.com/users/GSA/orgs","repos_url":"https://api.github.com/users/GSA/repos","events_url":"https://api.github.com/users/GSA/events{/privacy}","received_events_url":"https://api.github.com/users/GSA/received_events","type":"Organization","site_admin":false},"repo":{"id":99720428,"node_id":"MDEwOlJlcG9zaXRvcnk5OTcyMDQyOA==","name":"digitalgov.gov","full_name":"GSA/digitalgov.gov","private":false,"owner":{"login":"GSA","id":643070,"node_id":"MDEyOk9yZ2FuaXphdGlvbjY0MzA3MA==","avatar_url":"https://avatars3.githubusercontent.com/u/643070?v=4","gravatar_id":"","url":"https://api.github.com/users/GSA","html_url":"https://github.com/GSA","followers_url":"https://api.github.com/users/GSA/followers","following_url":"https://api.github.com/users/GSA/following{/other_user}","gists_url":"https://api.github.com/users/GSA/gists{/gist_id}","starred_url":"https://api.github.com/users/GSA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/GSA/subscriptions","organizations_url":"https://api.github.com/users/GSA/orgs","repos_url":"https://api.github.com/users/GSA/repos","events_url":"https://api.github.com/users/GSA/events{/privacy}","received_events_url":"https://api.github.com/users/GSA/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/GSA/digitalgov.gov","description":"Digital.gov — Helping the government community deliver better digital services.","fork":false,"url":"https://api.github.com/repos/GSA/digitalgov.gov","forks_url":"https://api.github.com/repos/GSA/digitalgov.gov/forks","keys_url":"https://api.github.com/repos/GSA/digitalgov.gov/keys{/key_id}","collaborators_url":"https://api.github.com/repos/GSA/digitalgov.gov/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/GSA/digitalgov.gov/teams","hooks_url":"https://api.github.com/repos/GSA/digitalgov.gov/hooks","issue_events_url":"https://api.github.com/repos/GSA/digitalgov.gov/issues/events{/number}","events_url":"https://api.github.com/repos/GSA/digitalgov.gov/events","assignees_url":"https://api.github.com/repos/GSA/digitalgov.gov/assignees{/user}","branches_url":"https://api.github.com/repos/GSA/digitalgov.gov/branches{/branch}","tags_url":"https://api.github.com/repos/GSA/digitalgov.gov/tags","blobs_url":"https://api.github.com/repos/GSA/digitalgov.gov/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/GSA/digitalgov.gov/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/GSA/digitalgov.gov/git/refs{/sha}","trees_url":"https://api.github.com/repos/GSA/digitalgov.gov/git/trees{/sha}","statuses_url":"https://api.github.com/repos/GSA/digitalgov.gov/statuses/{sha}","languages_url":"https://api.github.com/repos/GSA/digitalgov.gov/languages","stargazers_url":"https://api.github.com/repos/GSA/digitalgov.gov/stargazers","contributors_url":"https://api.github.com/repos/GSA/digitalgov.gov/contributors","subscribers_url":"https://api.github.com/repos/GSA/digitalgov.gov/subscribers","subscription_url":"https://api.github.com/repos/GSA/digitalgov.gov/subscription","commits_url":"https://api.github.com/repos/GSA/digitalgov.gov/commits{/sha}","git_commits_url":"https://api.github.com/repos/GSA/digitalgov.gov/git/commits{/sha}","comments_url":"https://api.github.com/repos/GSA/digitalgov.gov/comments{/number}","issue_comment_url":"https://api.github.com/repos/GSA/digitalgov.gov/issues/comments{/number}","contents_url":"https://api.github.com/repos/GSA/digitalgov.gov/contents/{+path}","compare_url":"https://api.github.com/repos/GSA/digitalgov.gov/compare/{base}...{head}","merges_url":"https://api.github.com/repos/GSA/digitalgov.gov/merges","archive_url":"https://api.github.com/repos/GSA/digitalgov.gov/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/GSA/digitalgov.gov/downloads","issues_url":"https://api.github.com/repos/GSA/digitalgov.gov/issues{/number}","pulls_url":"https://api.github.com/repos/GSA/digitalgov.gov/pulls{/number}","milestones_url":"https://api.github.com/repos/GSA/digitalgov.gov/milestones{/number}","notifications_url":"https://api.github.com/repos/GSA/digitalgov.gov/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/GSA/digitalgov.gov/labels{/name}","releases_url":"https://api.github.com/repos/GSA/digitalgov.gov/releases{/id}","deployments_url":"https://api.github.com/repos/GSA/digitalgov.gov/deployments","created_at":"2017-08-08T17:44:43Z","updated_at":"2020-10-20T21:24:01Z","pushed_at":"2020-10-20T21:35:57Z","git_url":"git://github.com/GSA/digitalgov.gov.git","ssh_url":"[email protected]:GSA/digitalgov.gov.git","clone_url":"https://github.com/GSA/digitalgov.gov.git","svn_url":"https://github.com/GSA/digitalgov.gov","homepage":"https://digital.gov","size":557196,"stargazers_count":91,"watchers_count":91,"language":"HTML","has_issues":true,"has_projects":true,"has_downloads":true,"has_wiki":true,"has_pages":false,"forks_count":143,"mirror_url":null,"archived":false,"disabled":false,"open_issues_count":55,"license":{"key":"other","name":"Other","spdx_id":"NOASSERTION","url":null,"node_id":"MDc6TGljZW5zZTA="},"forks":143,"open_issues":55,"watchers":91,"default_branch":"main"}},"_links":{"self":{"href":"https://api.github.com/repos/GSA/digitalgov.gov/pulls/3348"},"html":{"href":"https://github.com/GSA/digitalgov.gov/pull/3348"},"issue":{"href":"https://api.github.com/repos/GSA/digitalgov.gov/issues/3348"},"comments":{"href":"https://api.github.com/repos/GSA/digitalgov.gov/issues/3348/comments"},"review_comments":{"href":"https://api.github.com/repos/GSA/digitalgov.gov/pulls/3348/comments"},"review_comment":{"href":"https://api.github.com/repos/GSA/digitalgov.gov/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/GSA/digitalgov.gov/pulls/3348/commits"},"statuses":{"href":"https://api.github.com/repos/GSA/digitalgov.gov/statuses/864bd554f35409254bf4aae32db51be125f65b7f"}},"author_association":"MEMBER","active_lock_reason":null,"merged":true,"mergeable":null,"rebaseable":null,"mergeable_state":"unknown","merged_by":{"login":"saracope","id":2197515,"node_id":"MDQ6VXNlcjIxOTc1MTU=","avatar_url":"https://avatars0.githubusercontent.com/u/2197515?v=4","gravatar_id":"","url":"https://api.github.com/users/saracope","html_url":"https://github.com/saracope","followers_url":"https://api.github.com/users/saracope/followers","following_url":"https://api.github.com/users/saracope/following{/other_user}","gists_url":"https://api.github.com/users/saracope/gists{/gist_id}","starred_url":"https://api.github.com/users/saracope/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/saracope/subscriptions","organizations_url":"https://api.github.com/users/saracope/orgs","repos_url":"https://api.github.com/users/saracope/repos","events_url":"https://api.github.com/users/saracope/events{/privacy}","received_events_url":"https://api.github.com/users/saracope/received_events","type":"User","site_admin":false},"comments":1,"review_comments":0,"maintainer_can_modify":false,"commits":1,"additions":2,"deletions":0,"changed_files":1}}
|
{
"id": 99720428,
"name": "GSA/digitalgov.gov",
"url": "https://api.github.com/repos/GSA/digitalgov.gov"
}
|
{
"id": 2197515,
"login": "saracope",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/2197515?",
"url": "https://api.github.com/users/saracope"
}
|
{
"id": 643070,
"login": "GSA",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/643070?",
"url": "https://api.github.com/orgs/GSA"
}
| 2020-10-20T21:35:57
|
13914135069
|
{"actor":{"display_login":"saracope"}}
|
CreateEvent
| true
|
{"ref":"feature/78_template_reference_refactor","ref_type":"branch","master_branch":"develop","description":"Serious Gaming, Evolved - web interface","pusher_type":"user"}
|
{
"id": 211896463,
"name": "serge-web/serge",
"url": "https://api.github.com/repos/serge-web/serge"
}
|
{
"id": 371291,
"login": "zukilover",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/371291?",
"url": "https://api.github.com/users/zukilover"
}
|
{
"id": 47825634,
"login": "serge-web",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/47825634?",
"url": "https://api.github.com/orgs/serge-web"
}
| 2020-10-28T13:53:32
|
14001634771
|
{"actor":{"display_login":"zukilover"}}
|
PushEvent
| true
|
{"push_id":4736822281,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"fd0e7c9b6722f4b524bfc3f8595c1dd37a332332","before":"295b628c00f508089b301813cebb30ae0e01de84","commits":[{"sha":"fd0e7c9b6722f4b524bfc3f8595c1dd37a332332","author":{"name":"lyk0713","email":"c7f2d200c51d5b78047b326621577a53f8af2fd5"},"message":"修复完善登录功能,并实现退出登录,使用拦截器封装登录的cookie遍历","distinct":true,"url":"https://api.github.com/repos/lyk0713/community/commits/fd0e7c9b6722f4b524bfc3f8595c1dd37a332332"}]}
|
{
"id": 243426763,
"name": "lyk0713/community",
"url": "https://api.github.com/repos/lyk0713/community"
}
|
{
"id": 49718279,
"login": "lyk0713",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/49718279?",
"url": "https://api.github.com/users/lyk0713"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-03-09T06:06:51
|
11711677484
|
{"actor":{"display_login":"lyk0713"}}
|
CreateEvent
| true
|
{"ref":"issue-2391","ref_type":"branch","master_branch":"master","description":null,"pusher_type":"user"}
|
{
"id": 107336735,
"name": "pythonprobr/pythonpro-website",
"url": "https://api.github.com/repos/pythonprobr/pythonpro-website"
}
|
{
"id": 549428,
"login": "moacirmoda",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/549428?",
"url": "https://api.github.com/users/moacirmoda"
}
|
{
"id": 5488499,
"login": "pythonprobr",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/5488499?",
"url": "https://api.github.com/orgs/pythonprobr"
}
| 2020-05-20T18:00:12
|
12395072528
|
{"actor":{"display_login":"moacirmoda"}}
|
PushEvent
| true
|
{"push_id":5152254540,"size":1,"distinct_size":1,"ref":"refs/heads/lab06","head":"00102ecef72b4ee4ccfec005dede21963e62074b","before":"361d634fa33494034348abe3c2bf99ee845d6b77","commits":[{"sha":"00102ecef72b4ee4ccfec005dede21963e62074b","author":{"name":"kev1nwangsus","email":"[email protected]"},"message":"final","distinct":true,"url":"https://api.github.com/repos/Kev1nWangsus/cs24lab/commits/00102ecef72b4ee4ccfec005dede21963e62074b"}]}
|
{
"id": 261655165,
"name": "Kev1nWangsus/cs24lab",
"url": "https://api.github.com/repos/Kev1nWangsus/cs24lab"
}
|
{
"id": 45891992,
"login": "Kev1nWangsus",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/45891992?",
"url": "https://api.github.com/users/Kev1nWangsus"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-05-30T15:55:13
|
12484679963
|
{"actor":{"display_login":"Kev1nWangsus"}}
|
PushEvent
| true
|
{"push_id":5484283567,"size":1,"distinct_size":1,"ref":"refs/heads/master","head":"65a6db90db205bdf62358228ec336d6cc38e7b0b","before":"7d619bf8864a6bbcecc9cb04010a87d4212faea8","commits":[{"sha":"65a6db90db205bdf62358228ec336d6cc38e7b0b","author":{"name":"Vitaly Kryukov","email":"[email protected]"},"message":"2020-08-05 14:06:57 +0300 MSK","distinct":true,"url":"https://api.github.com/repos/hookzof/socks5_list/commits/65a6db90db205bdf62358228ec336d6cc38e7b0b"}]}
|
{
"id": 200941132,
"name": "hookzof/socks5_list",
"url": "https://api.github.com/repos/hookzof/socks5_list"
}
|
{
"id": 22233835,
"login": "hookzof",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/22233835?",
"url": "https://api.github.com/users/hookzof"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-08-05T11:06:59
|
13116319270
|
{"actor":{"display_login":"hookzof"}}
|
PushEvent
| true
|
{"push_id":4776060025,"size":0,"distinct_size":0,"ref":"refs/heads/tmp.master","head":"d678d516ef74de983dcaed8c0ed8cc39a0af0669","before":"d678d516ef74de983dcaed8c0ed8cc39a0af0669","commits":[]}
|
{
"id": 19745004,
"name": "odoo/odoo",
"url": "https://api.github.com/repos/odoo/odoo"
}
|
{
"id": 16837285,
"login": "robodoo",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/16837285?",
"url": "https://api.github.com/users/robodoo"
}
|
{
"id": 6368483,
"login": "odoo",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6368483?",
"url": "https://api.github.com/orgs/odoo"
}
| 2020-03-17T10:23:15
|
11785478333
|
{"actor":{"display_login":"robodoo"}}
|
CreateEvent
| true
|
{"ref":"patch-6","ref_type":"tag","master_branch":"master","description":"Fixes the Wacom Bamboo, Intuos 3 and Cintiq 1st gen tablet drivers for macOS Catalina","pusher_type":"user"}
|
{
"id": 229202245,
"name": "thenickdude/wacom-driver-fix",
"url": "https://api.github.com/repos/thenickdude/wacom-driver-fix"
}
|
{
"id": 1921411,
"login": "thenickdude",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/1921411?",
"url": "https://api.github.com/users/thenickdude"
}
|
{
"id": null,
"login": null,
"gravatar_id": null,
"avatar_url": null,
"url": null
}
| 2020-08-13T02:11:30
|
13187050469
|
{"actor":{"display_login":"thenickdude"}}
|
IssueCommentEvent
| true
|
{"action":"created","issue":{"url":"https://api.github.com/repos/grpc/grpc-java/issues/7563","repository_url":"https://api.github.com/repos/grpc/grpc-java","labels_url":"https://api.github.com/repos/grpc/grpc-java/issues/7563/labels{/name}","comments_url":"https://api.github.com/repos/grpc/grpc-java/issues/7563/comments","events_url":"https://api.github.com/repos/grpc/grpc-java/issues/7563/events","html_url":"https://github.com/grpc/grpc-java/issues/7563","id":730976637,"node_id":"MDU6SXNzdWU3MzA5NzY2Mzc=","number":7563,"title":"gRPC server instantly resets stream for requests to one API after some time","user":{"login":"Sovietaced","id":1274471,"node_id":"MDQ6VXNlcjEyNzQ0NzE=","avatar_url":"https://avatars2.githubusercontent.com/u/1274471?v=4","gravatar_id":"","url":"https://api.github.com/users/Sovietaced","html_url":"https://github.com/Sovietaced","followers_url":"https://api.github.com/users/Sovietaced/followers","following_url":"https://api.github.com/users/Sovietaced/following{/other_user}","gists_url":"https://api.github.com/users/Sovietaced/gists{/gist_id}","starred_url":"https://api.github.com/users/Sovietaced/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/Sovietaced/subscriptions","organizations_url":"https://api.github.com/users/Sovietaced/orgs","repos_url":"https://api.github.com/users/Sovietaced/repos","events_url":"https://api.github.com/users/Sovietaced/events{/privacy}","received_events_url":"https://api.github.com/users/Sovietaced/received_events","type":"User","site_admin":false},"labels":[{"id":155505170,"node_id":"MDU6TGFiZWwxNTU1MDUxNzA=","url":"https://api.github.com/repos/grpc/grpc-java/labels/question","name":"question","color":"cc317c","default":true,"description":null}],"state":"open","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":9,"created_at":"2020-10-28T00:34:37Z","updated_at":"2020-10-28T22:57:48Z","closed_at":null,"author_association":"NONE","active_lock_reason":null,"body":"Hi all. We are using java-grpc version 1.23.0 (EDIT: have noticed the same behavior in 1.32.2) and we are seeing some unusual behavior. After some amount of time of responding to requests normally our gRPC server will start sending `OUTBOUND RST_STREAM` in response to requests to only one of our APIs. The requests seems to make it to the Netty layer but never make it to our API implementation. Does anyone have an idea why this might be happening?\r\n\r\nSome observations\r\n* This only happens to one of our microservices (in a mesh of many)\r\n* This only happens to a single API call on the server \r\n\r\nIn the logs I see error codes 5 and 8 I believe are HTTP 2 error codes for stream closed and cancel.\r\n\r\n\r\nLogs below following streamId=279535 (newer messages first FYI)\r\n```\r\n\r\n | Oct 27, 2020 @ 16:50:10.396 | 23:50:10.396 [grpc-default-worker-ELG-1-5-] DEBUG io.grpc.netty.shaded.io.grpc.netty.NettyServerHandler - [id: 0x7d76ec40, <REDACTED>] OUTBOUND RST_STREAM: streamId=279535 errorCode=8\r\n\r\n | Oct 27, 2020 @ 16:50:10.396 | 23:50:10.396 [grpc-default-worker-ELG-1-5-] DEBUG io.grpc.netty.shaded.io.grpc.netty.NettyServerHandler - [id: 0x7d76ec40, <REDACTED>] OUTBOUND RST_STREAM: streamId=279535 errorCode=5\r\n\r\n | Oct 27, 2020 @ 16:50:10.396 | 23:50:10.396 [grpc-default-worker-ELG-1-5-] DEBUG io.grpc.netty.shaded.io.grpc.netty.NettyServerHandler - [id: 0x7d76ec40, <REDACTED>] INBOUND DATA: streamId=279535 padding=0 endStream=false length=16384 bytes=3936313438...\r\n\r\n | Oct 27, 2020 @ 16:50:10.396 | 23:50:10.396 [grpc-default-worker-ELG-1-5-] DEBUG io.grpc.netty.shaded.io.grpc.netty.NettyServerHandler - [id: 0x7d76ec40, <REDACTED>] INBOUND DATA: streamId=279535 padding=0 endStream=false length=16384 bytes=6e655f6964...\r\n \r\n | Oct 27, 2020 @ 16:50:10.396 | 23:50:10.396 [grpc-default-worker-ELG-1-5-] DEBUG io.grpc.netty.shaded.io.grpc.netty.NettyServerHandler - [id: 0x7d76ec40, <REDACTED>] OUTBOUND RST_STREAM: streamId=279535 errorCode=5\r\n\r\n | Oct 27, 2020 @ 16:50:10.396 | 23:50:10.396 [grpc-default-worker-ELG-1-5-] DEBUG io.grpc.netty.shaded.io.grpc.netty.NettyServerHandler - [id: 0x7d76ec40, <REDACTED>] OUTBOUND RST_STREAM: streamId=279535 errorCode=5\r\n\r\n | Oct 27, 2020 @ 16:50:10.396 | 23:50:10.396 [grpc-default-worker-ELG-1-5-] DEBUG io.grpc.netty.shaded.io.grpc.netty.NettyServerHandler - [id: 0x7d76ec40, <REDACTED>] INBOUND DATA: streamId=279535 padding=0 endStream=false length=16384 bytes=756465223a...\r\n\r\n | Oct 27, 2020 @ 16:50:10.396 | 23:50:10.396 [grpc-default-worker-ELG-1-5-] DEBUG io.grpc.netty.shaded.io.grpc.netty.NettyServerHandler - [id: 0x7d76ec40, <REDACTED>] INBOUND DATA: streamId=279535 padding=0 endStream=false length=16384 bytes=7b226c616e...\r\n\r\n | Oct 27, 2020 @ 16:50:10.396 | 23:50:10.396 [grpc-default-worker-ELG-1-5-] DEBUG io.grpc.netty.shaded.io.grpc.netty.NettyServerHandler - [id: 0x7d76ec40, <REDACTED>] INBOUND DATA: streamId=279535 padding=0 endStream=false length=16384 bytes=3a34302e34...\r\n\r\n | Oct 27, 2020 @ 16:50:10.396 | 23:50:10.396 [grpc-default-worker-ELG-1-5-] DEBUG io.grpc.netty.shaded.io.grpc.netty.NettyServerHandler - [id: 0x7d76ec40, <REDACTED>] INBOUND DATA: streamId=279535 padding=0 endStream=false length=16384 bytes=7469747564...\r\n\r\n | Oct 27, 2020 @ 16:50:10.396 | 23:50:10.396 [grpc-default-worker-ELG-1-5-] DEBUG io.grpc.netty.shaded.io.grpc.netty.NettyServerHandler - [id: 0x7d76ec40, <REDACTED>] INBOUND DATA: streamId=279535 padding=0 endStream=false length=16384 bytes=3a2d37392e...\r\n\r\n | Oct 27, 2020 @ 16:50:10.396 | 23:50:10.396 [grpc-default-worker-ELG-1-5-] DEBUG io.grpc.netty.shaded.io.grpc.netty.NettyServerHandler - [id: 0x7d76ec40, <REDACTED>] INBOUND DATA: streamId=279535 padding=0 endStream=false length=16384 bytes=5b5d2c2270...\r\n\r\n | Oct 27, 2020 @ 16:50:10.396 | 23:50:10.396 [grpc-default-worker-ELG-1-5-] DEBUG io.grpc.netty.shaded.io.grpc.netty.NettyServerHandler - [id: 0x7d76ec40, <REDACTED>] OUTBOUND RST_STREAM: streamId=279535 errorCode=5\r\n\r\n | Oct 27, 2020 @ 16:50:10.395 | 23:50:10.395 [grpc-default-worker-ELG-1-5-] DEBUG io.grpc.netty.shaded.io.grpc.netty.NettyServerHandler - [id: 0x7d76ec40, <REDACTED>] INBOUND DATA: streamId=279535 padding=0 endStream=false length=16384 bytes=223a5b5d7d...\r\n\r\n | Oct 27, 2020 @ 16:50:10.395 | 23:50:10.395 [grpc-default-worker-ELG-1-5-] DEBUG io.grpc.netty.shaded.io.grpc.netty.NettyServerHandler - [id: 0x7d76ec40, <REDACTED>] INBOUND HEADERS: streamId=279535 headers=GrpcHttp2RequestHeaders[:path: /<redacted>, :authority: <redacted>, :method: POST, :scheme: http, te: trailers, content-type: application/grpc, user-agent: grpc-java-netty/1.23.0, grpc-accept-encoding: gzip, grpc-timeout: 9999m, x-forwarded-proto: http, x-request-id: 82adf366-4b45-498e-b045-6e2966229aba, x-envoy-expected-rq-timeout-ms: 9999, x-b3-traceid: 849550ef8ae3ed3ea4d053bc28cb210d, x-b3-spanid: 5c805424f4592f87, x-b3-parentspanid: a4d053bc28cb210d, x-b3-sampled: 0] padding=0 endStream=false\r\n```","performed_via_github_app":null},"comment":{"url":"https://api.github.com/repos/grpc/grpc-java/issues/comments/718255476","html_url":"https://github.com/grpc/grpc-java/issues/7563#issuecomment-718255476","issue_url":"https://api.github.com/repos/grpc/grpc-java/issues/7563","id":718255476,"node_id":"MDEyOklzc3VlQ29tbWVudDcxODI1NTQ3Ng==","user":{"login":"ejona86","id":2811396,"node_id":"MDQ6VXNlcjI4MTEzOTY=","avatar_url":"https://avatars2.githubusercontent.com/u/2811396?v=4","gravatar_id":"","url":"https://api.github.com/users/ejona86","html_url":"https://github.com/ejona86","followers_url":"https://api.github.com/users/ejona86/followers","following_url":"https://api.github.com/users/ejona86/following{/other_user}","gists_url":"https://api.github.com/users/ejona86/gists{/gist_id}","starred_url":"https://api.github.com/users/ejona86/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ejona86/subscriptions","organizations_url":"https://api.github.com/users/ejona86/orgs","repos_url":"https://api.github.com/users/ejona86/repos","events_url":"https://api.github.com/users/ejona86/events{/privacy}","received_events_url":"https://api.github.com/users/ejona86/received_events","type":"User","site_admin":false},"created_at":"2020-10-28T22:57:47Z","updated_at":"2020-10-28T22:57:47Z","author_association":"MEMBER","body":"Ah, excellent. Yeah, that looks much better (although there still seems to be some reordering going on, whatever). That message has a size of 0x01242234 = 19 MB. That's larger than the default allowed size of 4 MB. If the server hasn't increased the maximum message size, then that would likely be the cause of the failure. I don't know why you don't see the warning on your server-side logs though.","performed_via_github_app":null}}
|
{
"id": 27729926,
"name": "grpc/grpc-java",
"url": "https://api.github.com/repos/grpc/grpc-java"
}
|
{
"id": 2811396,
"login": "ejona86",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/2811396?",
"url": "https://api.github.com/users/ejona86"
}
|
{
"id": 7802525,
"login": "grpc",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/7802525?",
"url": "https://api.github.com/orgs/grpc"
}
| 2020-10-28T22:57:48
|
14008131236
|
{"actor":{"display_login":"ejona86"}}
|
PushEvent
| true
|
{"push_id":5922528140,"size":1,"distinct_size":1,"ref":"refs/heads/nazli-dev","head":"532d8ea6ce59dbb71defb9097312736c00e161bf","before":"64dd6755e2ff8c76f1c9a475ecb73a95b7a20bb5","commits":[{"sha":"532d8ea6ce59dbb71defb9097312736c00e161bf","author":{"name":"Nazli Ercan","email":"[email protected]"},"message":"revisions","distinct":true,"url":"https://api.github.com/repos/RiversInstitute/rivers/commits/532d8ea6ce59dbb71defb9097312736c00e161bf"}]}
|
{
"id": 285147774,
"name": "RiversInstitute/rivers",
"url": "https://api.github.com/repos/RiversInstitute/rivers"
}
|
{
"id": 43658971,
"login": "ercnazli",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/43658971?",
"url": "https://api.github.com/users/ercnazli"
}
|
{
"id": 68355954,
"login": "RiversInstitute",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/68355954?",
"url": "https://api.github.com/orgs/RiversInstitute"
}
| 2020-10-26T21:28:59
|
13978202529
|
{"actor":{"display_login":"ercnazli"}}
|
IssueCommentEvent
| true
|
{"action":"created","issue":{"url":"https://api.github.com/repos/vuejs/vue-class-component/issues/294","repository_url":"https://api.github.com/repos/vuejs/vue-class-component","labels_url":"https://api.github.com/repos/vuejs/vue-class-component/issues/294/labels{/name}","comments_url":"https://api.github.com/repos/vuejs/vue-class-component/issues/294/comments","events_url":"https://api.github.com/repos/vuejs/vue-class-component/issues/294/events","html_url":"https://github.com/vuejs/vue-class-component/issues/294","id":388900852,"node_id":"MDU6SXNzdWUzODg5MDA4NTI=","number":294,"title":"Does not work with Vue 2.5.18","user":{"login":"screendriver","id":149248,"node_id":"MDQ6VXNlcjE0OTI0OA==","avatar_url":"https://avatars0.githubusercontent.com/u/149248?v=4","gravatar_id":"","url":"https://api.github.com/users/screendriver","html_url":"https://github.com/screendriver","followers_url":"https://api.github.com/users/screendriver/followers","following_url":"https://api.github.com/users/screendriver/following{/other_user}","gists_url":"https://api.github.com/users/screendriver/gists{/gist_id}","starred_url":"https://api.github.com/users/screendriver/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/screendriver/subscriptions","organizations_url":"https://api.github.com/users/screendriver/orgs","repos_url":"https://api.github.com/users/screendriver/repos","events_url":"https://api.github.com/users/screendriver/events{/privacy}","received_events_url":"https://api.github.com/users/screendriver/received_events","type":"User","site_admin":false},"labels":[{"id":228996631,"node_id":"MDU6TGFiZWwyMjg5OTY2MzE=","url":"https://api.github.com/repos/vuejs/vue-class-component/labels/bug","name":"bug","color":"fc2929","default":true,"description":null}],"state":"closed","locked":false,"assignee":null,"assignees":[],"milestone":null,"comments":16,"created_at":"2018-12-08T08:32:13Z","updated_at":"2020-10-26T07:41:20Z","closed_at":"2018-12-10T16:53:57Z","author_association":"NONE","active_lock_reason":null,"body":"<!--\r\nPlease make sure to provide a **minimal and self-contained reproduction** if you are reporting a bug.\r\nYou can use the following jsfiddle template or make an example github repository.\r\nhttps://jsfiddle.net/ktsn/nm55jnjk/\r\n\r\nFor usage questions, please use the following resources:\r\n\r\n* Ask on the forum https://forum.vuejs.org\r\n* Ask on the chat room https://chat.vuejs.org\r\n* Look for / ask questions on Stack Overflow\r\n-->\r\n\r\nJust create a new project with Vue CLI and you get a\r\n\r\n```sh\r\n35:1 Unable to resolve signature of class decorator when called as an expression.\r\n Type '<VC extends VueClass<Vue>>(target: VC) => VC' is missing the following properties from type 'typeof HelloWorld': exte\r\nnd, nextTick, set, delete, and 7 more.\r\n 33 | import { Component, Prop, Vue } from 'vue-property-decorator';\r\n 34 |\r\n > 35 | @Component\r\n | ^\r\n 36 | export default class HelloWorld extends Vue {\r\n 37 | @Prop() private msg!: string;\r\n 38 | }\r\n```\r\n\r\nThis happens since the update of Vue and vue-template-compiler to version `2.5.18`. With `2.5.17` everything works.","performed_via_github_app":null},"comment":{"url":"https://api.github.com/repos/vuejs/vue-class-component/issues/comments/716370254","html_url":"https://github.com/vuejs/vue-class-component/issues/294#issuecomment-716370254","issue_url":"https://api.github.com/repos/vuejs/vue-class-component/issues/294","id":716370254,"node_id":"MDEyOklzc3VlQ29tbWVudDcxNjM3MDI1NA==","user":{"login":"burloiumarian23","id":72654356,"node_id":"MDQ6VXNlcjcyNjU0MzU2","avatar_url":"https://avatars2.githubusercontent.com/u/72654356?v=4","gravatar_id":"","url":"https://api.github.com/users/burloiumarian23","html_url":"https://github.com/burloiumarian23","followers_url":"https://api.github.com/users/burloiumarian23/followers","following_url":"https://api.github.com/users/burloiumarian23/following{/other_user}","gists_url":"https://api.github.com/users/burloiumarian23/gists{/gist_id}","starred_url":"https://api.github.com/users/burloiumarian23/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/burloiumarian23/subscriptions","organizations_url":"https://api.github.com/users/burloiumarian23/orgs","repos_url":"https://api.github.com/users/burloiumarian23/repos","events_url":"https://api.github.com/users/burloiumarian23/events{/privacy}","received_events_url":"https://api.github.com/users/burloiumarian23/received_events","type":"User","site_admin":false},"created_at":"2020-10-26T07:41:20Z","updated_at":"2020-10-26T07:41:20Z","author_association":"NONE","body":"Looks like this issue is reproducible also in latest Vue 2.6.12 ... it breaks everything after updating dependencies with npm update ... what is the workaround ? i have been searching a solution for days...","performed_via_github_app":null}}
|
{
"id": 38071534,
"name": "vuejs/vue-class-component",
"url": "https://api.github.com/repos/vuejs/vue-class-component"
}
|
{
"id": 72654356,
"login": "burloiumarian23",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/72654356?",
"url": "https://api.github.com/users/burloiumarian23"
}
|
{
"id": 6128107,
"login": "vuejs",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/6128107?",
"url": "https://api.github.com/orgs/vuejs"
}
| 2020-10-26T07:41:20
|
13968423633
|
{"actor":{"display_login":"burloiumarian23"}}
|
PullRequestReviewEvent
| true
|
{"action":"created","review":{"id":516969953,"node_id":"MDE3OlB1bGxSZXF1ZXN0UmV2aWV3NTE2OTY5OTUz","user":{"login":"guilean","id":20446871,"node_id":"MDQ6VXNlcjIwNDQ2ODcx","avatar_url":"https://avatars1.githubusercontent.com/u/20446871?v=4","gravatar_id":"","url":"https://api.github.com/users/guilean","html_url":"https://github.com/guilean","followers_url":"https://api.github.com/users/guilean/followers","following_url":"https://api.github.com/users/guilean/following{/other_user}","gists_url":"https://api.github.com/users/guilean/gists{/gist_id}","starred_url":"https://api.github.com/users/guilean/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/guilean/subscriptions","organizations_url":"https://api.github.com/users/guilean/orgs","repos_url":"https://api.github.com/users/guilean/repos","events_url":"https://api.github.com/users/guilean/events{/privacy}","received_events_url":"https://api.github.com/users/guilean/received_events","type":"User","site_admin":false},"body":null,"commit_id":"52508d56aeb622eb9d7cb4ea9f932c1ac6a82288","submitted_at":"2020-10-26T16:41:53Z","state":"commented","html_url":"https://github.com/cmpsr/composer/pull/165#pullrequestreview-516969953","pull_request_url":"https://api.github.com/repos/cmpsr/composer/pulls/165","author_association":"CONTRIBUTOR","_links":{"html":{"href":"https://github.com/cmpsr/composer/pull/165#pullrequestreview-516969953"},"pull_request":{"href":"https://api.github.com/repos/cmpsr/composer/pulls/165"}}},"pull_request":{"url":"https://api.github.com/repos/cmpsr/composer/pulls/165","id":509916167,"node_id":"MDExOlB1bGxSZXF1ZXN0NTA5OTE2MTY3","html_url":"https://github.com/cmpsr/composer/pull/165","diff_url":"https://github.com/cmpsr/composer/pull/165.diff","patch_url":"https://github.com/cmpsr/composer/pull/165.patch","issue_url":"https://api.github.com/repos/cmpsr/composer/issues/165","number":165,"state":"open","locked":false,"title":"Styled List Items","user":{"login":"guilean","id":20446871,"node_id":"MDQ6VXNlcjIwNDQ2ODcx","avatar_url":"https://avatars1.githubusercontent.com/u/20446871?v=4","gravatar_id":"","url":"https://api.github.com/users/guilean","html_url":"https://github.com/guilean","followers_url":"https://api.github.com/users/guilean/followers","following_url":"https://api.github.com/users/guilean/following{/other_user}","gists_url":"https://api.github.com/users/guilean/gists{/gist_id}","starred_url":"https://api.github.com/users/guilean/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/guilean/subscriptions","organizations_url":"https://api.github.com/users/guilean/orgs","repos_url":"https://api.github.com/users/guilean/repos","events_url":"https://api.github.com/users/guilean/events{/privacy}","received_events_url":"https://api.github.com/users/guilean/received_events","type":"User","site_admin":false},"body":"**Checklist**\r\n- [X] New feature (non-breaking change which adds functionality)\r\n\r\n**Please check if the PR fulfills these requirements**\r\n- [X] Tests for the changes have been added (for bug fixes / features)\r\n- [X] Storybook or docs have been added / updated (for bug fixes / features)\r\n\r\n**What is the ticket / issue associated with this change?** (Link to the ticket or issue)\r\nhttps://trello.com/c/mMYjbJyj","created_at":"2020-10-26T10:05:04Z","updated_at":"2020-10-26T16:41:53Z","closed_at":null,"merged_at":null,"merge_commit_sha":"d7950ac6b2d16650a8c344c0d3709d3ef8ad58f1","assignee":{"login":"tkanzakic","id":884028,"node_id":"MDQ6VXNlcjg4NDAyOA==","avatar_url":"https://avatars3.githubusercontent.com/u/884028?v=4","gravatar_id":"","url":"https://api.github.com/users/tkanzakic","html_url":"https://github.com/tkanzakic","followers_url":"https://api.github.com/users/tkanzakic/followers","following_url":"https://api.github.com/users/tkanzakic/following{/other_user}","gists_url":"https://api.github.com/users/tkanzakic/gists{/gist_id}","starred_url":"https://api.github.com/users/tkanzakic/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tkanzakic/subscriptions","organizations_url":"https://api.github.com/users/tkanzakic/orgs","repos_url":"https://api.github.com/users/tkanzakic/repos","events_url":"https://api.github.com/users/tkanzakic/events{/privacy}","received_events_url":"https://api.github.com/users/tkanzakic/received_events","type":"User","site_admin":false},"assignees":[{"login":"tkanzakic","id":884028,"node_id":"MDQ6VXNlcjg4NDAyOA==","avatar_url":"https://avatars3.githubusercontent.com/u/884028?v=4","gravatar_id":"","url":"https://api.github.com/users/tkanzakic","html_url":"https://github.com/tkanzakic","followers_url":"https://api.github.com/users/tkanzakic/followers","following_url":"https://api.github.com/users/tkanzakic/following{/other_user}","gists_url":"https://api.github.com/users/tkanzakic/gists{/gist_id}","starred_url":"https://api.github.com/users/tkanzakic/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tkanzakic/subscriptions","organizations_url":"https://api.github.com/users/tkanzakic/orgs","repos_url":"https://api.github.com/users/tkanzakic/repos","events_url":"https://api.github.com/users/tkanzakic/events{/privacy}","received_events_url":"https://api.github.com/users/tkanzakic/received_events","type":"User","site_admin":false}],"requested_reviewers":[{"login":"ryanhefner","id":317749,"node_id":"MDQ6VXNlcjMxNzc0OQ==","avatar_url":"https://avatars3.githubusercontent.com/u/317749?v=4","gravatar_id":"","url":"https://api.github.com/users/ryanhefner","html_url":"https://github.com/ryanhefner","followers_url":"https://api.github.com/users/ryanhefner/followers","following_url":"https://api.github.com/users/ryanhefner/following{/other_user}","gists_url":"https://api.github.com/users/ryanhefner/gists{/gist_id}","starred_url":"https://api.github.com/users/ryanhefner/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/ryanhefner/subscriptions","organizations_url":"https://api.github.com/users/ryanhefner/orgs","repos_url":"https://api.github.com/users/ryanhefner/repos","events_url":"https://api.github.com/users/ryanhefner/events{/privacy}","received_events_url":"https://api.github.com/users/ryanhefner/received_events","type":"User","site_admin":false},{"login":"tkanzakic","id":884028,"node_id":"MDQ6VXNlcjg4NDAyOA==","avatar_url":"https://avatars3.githubusercontent.com/u/884028?v=4","gravatar_id":"","url":"https://api.github.com/users/tkanzakic","html_url":"https://github.com/tkanzakic","followers_url":"https://api.github.com/users/tkanzakic/followers","following_url":"https://api.github.com/users/tkanzakic/following{/other_user}","gists_url":"https://api.github.com/users/tkanzakic/gists{/gist_id}","starred_url":"https://api.github.com/users/tkanzakic/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/tkanzakic/subscriptions","organizations_url":"https://api.github.com/users/tkanzakic/orgs","repos_url":"https://api.github.com/users/tkanzakic/repos","events_url":"https://api.github.com/users/tkanzakic/events{/privacy}","received_events_url":"https://api.github.com/users/tkanzakic/received_events","type":"User","site_admin":false},{"login":"stevejcox","id":15239550,"node_id":"MDQ6VXNlcjE1MjM5NTUw","avatar_url":"https://avatars2.githubusercontent.com/u/15239550?v=4","gravatar_id":"","url":"https://api.github.com/users/stevejcox","html_url":"https://github.com/stevejcox","followers_url":"https://api.github.com/users/stevejcox/followers","following_url":"https://api.github.com/users/stevejcox/following{/other_user}","gists_url":"https://api.github.com/users/stevejcox/gists{/gist_id}","starred_url":"https://api.github.com/users/stevejcox/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/stevejcox/subscriptions","organizations_url":"https://api.github.com/users/stevejcox/orgs","repos_url":"https://api.github.com/users/stevejcox/repos","events_url":"https://api.github.com/users/stevejcox/events{/privacy}","received_events_url":"https://api.github.com/users/stevejcox/received_events","type":"User","site_admin":false}],"requested_teams":[],"labels":[],"milestone":null,"draft":false,"commits_url":"https://api.github.com/repos/cmpsr/composer/pulls/165/commits","review_comments_url":"https://api.github.com/repos/cmpsr/composer/pulls/165/comments","review_comment_url":"https://api.github.com/repos/cmpsr/composer/pulls/comments{/number}","comments_url":"https://api.github.com/repos/cmpsr/composer/issues/165/comments","statuses_url":"https://api.github.com/repos/cmpsr/composer/statuses/52508d56aeb622eb9d7cb4ea9f932c1ac6a82288","head":{"label":"cmpsr:styled-list-items","ref":"styled-list-items","sha":"52508d56aeb622eb9d7cb4ea9f932c1ac6a82288","user":{"login":"cmpsr","id":67131017,"node_id":"MDEyOk9yZ2FuaXphdGlvbjY3MTMxMDE3","avatar_url":"https://avatars3.githubusercontent.com/u/67131017?v=4","gravatar_id":"","url":"https://api.github.com/users/cmpsr","html_url":"https://github.com/cmpsr","followers_url":"https://api.github.com/users/cmpsr/followers","following_url":"https://api.github.com/users/cmpsr/following{/other_user}","gists_url":"https://api.github.com/users/cmpsr/gists{/gist_id}","starred_url":"https://api.github.com/users/cmpsr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cmpsr/subscriptions","organizations_url":"https://api.github.com/users/cmpsr/orgs","repos_url":"https://api.github.com/users/cmpsr/repos","events_url":"https://api.github.com/users/cmpsr/events{/privacy}","received_events_url":"https://api.github.com/users/cmpsr/received_events","type":"Organization","site_admin":false},"repo":{"id":273526776,"node_id":"MDEwOlJlcG9zaXRvcnkyNzM1MjY3NzY=","name":"composer","full_name":"cmpsr/composer","private":false,"owner":{"login":"cmpsr","id":67131017,"node_id":"MDEyOk9yZ2FuaXphdGlvbjY3MTMxMDE3","avatar_url":"https://avatars3.githubusercontent.com/u/67131017?v=4","gravatar_id":"","url":"https://api.github.com/users/cmpsr","html_url":"https://github.com/cmpsr","followers_url":"https://api.github.com/users/cmpsr/followers","following_url":"https://api.github.com/users/cmpsr/following{/other_user}","gists_url":"https://api.github.com/users/cmpsr/gists{/gist_id}","starred_url":"https://api.github.com/users/cmpsr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cmpsr/subscriptions","organizations_url":"https://api.github.com/users/cmpsr/orgs","repos_url":"https://api.github.com/users/cmpsr/repos","events_url":"https://api.github.com/users/cmpsr/events{/privacy}","received_events_url":"https://api.github.com/users/cmpsr/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cmpsr/composer","description":null,"fork":false,"url":"https://api.github.com/repos/cmpsr/composer","forks_url":"https://api.github.com/repos/cmpsr/composer/forks","keys_url":"https://api.github.com/repos/cmpsr/composer/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cmpsr/composer/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cmpsr/composer/teams","hooks_url":"https://api.github.com/repos/cmpsr/composer/hooks","issue_events_url":"https://api.github.com/repos/cmpsr/composer/issues/events{/number}","events_url":"https://api.github.com/repos/cmpsr/composer/events","assignees_url":"https://api.github.com/repos/cmpsr/composer/assignees{/user}","branches_url":"https://api.github.com/repos/cmpsr/composer/branches{/branch}","tags_url":"https://api.github.com/repos/cmpsr/composer/tags","blobs_url":"https://api.github.com/repos/cmpsr/composer/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cmpsr/composer/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cmpsr/composer/git/refs{/sha}","trees_url":"https://api.github.com/repos/cmpsr/composer/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cmpsr/composer/statuses/{sha}","languages_url":"https://api.github.com/repos/cmpsr/composer/languages","stargazers_url":"https://api.github.com/repos/cmpsr/composer/stargazers","contributors_url":"https://api.github.com/repos/cmpsr/composer/contributors","subscribers_url":"https://api.github.com/repos/cmpsr/composer/subscribers","subscription_url":"https://api.github.com/repos/cmpsr/composer/subscription","commits_url":"https://api.github.com/repos/cmpsr/composer/commits{/sha}","git_commits_url":"https://api.github.com/repos/cmpsr/composer/git/commits{/sha}","comments_url":"https://api.github.com/repos/cmpsr/composer/comments{/number}","issue_comment_url":"https://api.github.com/repos/cmpsr/composer/issues/comments{/number}","contents_url":"https://api.github.com/repos/cmpsr/composer/contents/{+path}","compare_url":"https://api.github.com/repos/cmpsr/composer/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cmpsr/composer/merges","archive_url":"https://api.github.com/repos/cmpsr/composer/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cmpsr/composer/downloads","issues_url":"https://api.github.com/repos/cmpsr/composer/issues{/number}","pulls_url":"https://api.github.com/repos/cmpsr/composer/pulls{/number}","milestones_url":"https://api.github.com/repos/cmpsr/composer/milestones{/number}","notifications_url":"https://api.github.com/repos/cmpsr/composer/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cmpsr/composer/labels{/name}","releases_url":"https://api.github.com/repos/cmpsr/composer/releases{/id}","deployments_url":"https://api.github.com/repos/cmpsr/composer/deployments","created_at":"2020-06-19T15:27:09Z","updated_at":"2020-10-19T10:32:41Z","pushed_at":"2020-10-26T16:38:47Z","git_url":"git://github.com/cmpsr/composer.git","ssh_url":"[email protected]:cmpsr/composer.git","clone_url":"https://github.com/cmpsr/composer.git","svn_url":"https://github.com/cmpsr/composer","homepage":"","size":2151,"stargazers_count":2,"watchers_count":2,"language":"JavaScript","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":8,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"forks":0,"open_issues":8,"watchers":2,"default_branch":"master"}},"base":{"label":"cmpsr:styled-components","ref":"styled-components","sha":"e7f209147d0a0a69b155d0249220fd9e00769fde","user":{"login":"cmpsr","id":67131017,"node_id":"MDEyOk9yZ2FuaXphdGlvbjY3MTMxMDE3","avatar_url":"https://avatars3.githubusercontent.com/u/67131017?v=4","gravatar_id":"","url":"https://api.github.com/users/cmpsr","html_url":"https://github.com/cmpsr","followers_url":"https://api.github.com/users/cmpsr/followers","following_url":"https://api.github.com/users/cmpsr/following{/other_user}","gists_url":"https://api.github.com/users/cmpsr/gists{/gist_id}","starred_url":"https://api.github.com/users/cmpsr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cmpsr/subscriptions","organizations_url":"https://api.github.com/users/cmpsr/orgs","repos_url":"https://api.github.com/users/cmpsr/repos","events_url":"https://api.github.com/users/cmpsr/events{/privacy}","received_events_url":"https://api.github.com/users/cmpsr/received_events","type":"Organization","site_admin":false},"repo":{"id":273526776,"node_id":"MDEwOlJlcG9zaXRvcnkyNzM1MjY3NzY=","name":"composer","full_name":"cmpsr/composer","private":false,"owner":{"login":"cmpsr","id":67131017,"node_id":"MDEyOk9yZ2FuaXphdGlvbjY3MTMxMDE3","avatar_url":"https://avatars3.githubusercontent.com/u/67131017?v=4","gravatar_id":"","url":"https://api.github.com/users/cmpsr","html_url":"https://github.com/cmpsr","followers_url":"https://api.github.com/users/cmpsr/followers","following_url":"https://api.github.com/users/cmpsr/following{/other_user}","gists_url":"https://api.github.com/users/cmpsr/gists{/gist_id}","starred_url":"https://api.github.com/users/cmpsr/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/cmpsr/subscriptions","organizations_url":"https://api.github.com/users/cmpsr/orgs","repos_url":"https://api.github.com/users/cmpsr/repos","events_url":"https://api.github.com/users/cmpsr/events{/privacy}","received_events_url":"https://api.github.com/users/cmpsr/received_events","type":"Organization","site_admin":false},"html_url":"https://github.com/cmpsr/composer","description":null,"fork":false,"url":"https://api.github.com/repos/cmpsr/composer","forks_url":"https://api.github.com/repos/cmpsr/composer/forks","keys_url":"https://api.github.com/repos/cmpsr/composer/keys{/key_id}","collaborators_url":"https://api.github.com/repos/cmpsr/composer/collaborators{/collaborator}","teams_url":"https://api.github.com/repos/cmpsr/composer/teams","hooks_url":"https://api.github.com/repos/cmpsr/composer/hooks","issue_events_url":"https://api.github.com/repos/cmpsr/composer/issues/events{/number}","events_url":"https://api.github.com/repos/cmpsr/composer/events","assignees_url":"https://api.github.com/repos/cmpsr/composer/assignees{/user}","branches_url":"https://api.github.com/repos/cmpsr/composer/branches{/branch}","tags_url":"https://api.github.com/repos/cmpsr/composer/tags","blobs_url":"https://api.github.com/repos/cmpsr/composer/git/blobs{/sha}","git_tags_url":"https://api.github.com/repos/cmpsr/composer/git/tags{/sha}","git_refs_url":"https://api.github.com/repos/cmpsr/composer/git/refs{/sha}","trees_url":"https://api.github.com/repos/cmpsr/composer/git/trees{/sha}","statuses_url":"https://api.github.com/repos/cmpsr/composer/statuses/{sha}","languages_url":"https://api.github.com/repos/cmpsr/composer/languages","stargazers_url":"https://api.github.com/repos/cmpsr/composer/stargazers","contributors_url":"https://api.github.com/repos/cmpsr/composer/contributors","subscribers_url":"https://api.github.com/repos/cmpsr/composer/subscribers","subscription_url":"https://api.github.com/repos/cmpsr/composer/subscription","commits_url":"https://api.github.com/repos/cmpsr/composer/commits{/sha}","git_commits_url":"https://api.github.com/repos/cmpsr/composer/git/commits{/sha}","comments_url":"https://api.github.com/repos/cmpsr/composer/comments{/number}","issue_comment_url":"https://api.github.com/repos/cmpsr/composer/issues/comments{/number}","contents_url":"https://api.github.com/repos/cmpsr/composer/contents/{+path}","compare_url":"https://api.github.com/repos/cmpsr/composer/compare/{base}...{head}","merges_url":"https://api.github.com/repos/cmpsr/composer/merges","archive_url":"https://api.github.com/repos/cmpsr/composer/{archive_format}{/ref}","downloads_url":"https://api.github.com/repos/cmpsr/composer/downloads","issues_url":"https://api.github.com/repos/cmpsr/composer/issues{/number}","pulls_url":"https://api.github.com/repos/cmpsr/composer/pulls{/number}","milestones_url":"https://api.github.com/repos/cmpsr/composer/milestones{/number}","notifications_url":"https://api.github.com/repos/cmpsr/composer/notifications{?since,all,participating}","labels_url":"https://api.github.com/repos/cmpsr/composer/labels{/name}","releases_url":"https://api.github.com/repos/cmpsr/composer/releases{/id}","deployments_url":"https://api.github.com/repos/cmpsr/composer/deployments","created_at":"2020-06-19T15:27:09Z","updated_at":"2020-10-19T10:32:41Z","pushed_at":"2020-10-26T16:38:47Z","git_url":"git://github.com/cmpsr/composer.git","ssh_url":"[email protected]:cmpsr/composer.git","clone_url":"https://github.com/cmpsr/composer.git","svn_url":"https://github.com/cmpsr/composer","homepage":"","size":2151,"stargazers_count":2,"watchers_count":2,"language":"JavaScript","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":8,"license":{"key":"mit","name":"MIT License","spdx_id":"MIT","url":"https://api.github.com/licenses/mit","node_id":"MDc6TGljZW5zZTEz"},"forks":0,"open_issues":8,"watchers":2,"default_branch":"master"}},"_links":{"self":{"href":"https://api.github.com/repos/cmpsr/composer/pulls/165"},"html":{"href":"https://github.com/cmpsr/composer/pull/165"},"issue":{"href":"https://api.github.com/repos/cmpsr/composer/issues/165"},"comments":{"href":"https://api.github.com/repos/cmpsr/composer/issues/165/comments"},"review_comments":{"href":"https://api.github.com/repos/cmpsr/composer/pulls/165/comments"},"review_comment":{"href":"https://api.github.com/repos/cmpsr/composer/pulls/comments{/number}"},"commits":{"href":"https://api.github.com/repos/cmpsr/composer/pulls/165/commits"},"statuses":{"href":"https://api.github.com/repos/cmpsr/composer/statuses/52508d56aeb622eb9d7cb4ea9f932c1ac6a82288"}},"author_association":"CONTRIBUTOR","active_lock_reason":null}}
|
{
"id": 273526776,
"name": "cmpsr/composer",
"url": "https://api.github.com/repos/cmpsr/composer"
}
|
{
"id": 20446871,
"login": "guilean",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/20446871?",
"url": "https://api.github.com/users/guilean"
}
|
{
"id": 67131017,
"login": "cmpsr",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/67131017?",
"url": "https://api.github.com/orgs/cmpsr"
}
| 2020-10-26T16:41:53
|
13974983269
|
{"actor":{"display_login":"guilean"}}
|
PushEvent
| true
|
{"push_id":5936725094,"size":1,"distinct_size":1,"ref":"refs/heads/histogram-get","head":"34f738f05d22a5b8f9cf83c9e727089e0f438ba5","before":"b58ce2a6d8d9cfa68bba2706ff80ed0e8bd76900","commits":[{"sha":"34f738f05d22a5b8f9cf83c9e727089e0f438ba5","author":{"name":"lgv-0","email":"[email protected]"},"message":"Add return on success","distinct":true,"url":"https://api.github.com/repos/ss-mvp/backend/commits/34f738f05d22a5b8f9cf83c9e727089e0f438ba5"}]}
|
{
"id": 273293974,
"name": "ss-mvp/backend",
"url": "https://api.github.com/repos/ss-mvp/backend"
}
|
{
"id": 55011072,
"login": "lgv-0",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/55011072?",
"url": "https://api.github.com/users/lgv-0"
}
|
{
"id": 62812666,
"login": "ss-mvp",
"gravatar_id": "",
"avatar_url": "https://avatars.githubusercontent.com/u/62812666?",
"url": "https://api.github.com/orgs/ss-mvp"
}
| 2020-10-28T21:44:54
|
14007532074
|
{"actor":{"display_login":"lgv-0"}}
|