pull_requests
1 row where user = 67342040
This data as json, CSV (advanced)
Suggested facets: created_at (date), updated_at (date), closed_at (date), merged_at (date)
| id ▼ | node_id | number | state | locked | title | user | body | created_at | updated_at | closed_at | merged_at | merge_commit_sha | assignee | milestone | draft | head | base | author_association | auto_merge | repo | url | merged_by |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 950398566 | PR_kwDOAMm_X844pe5m | 6653 | closed | 0 | very minor typo in HOW_TO_RELEASE: 0-padded month is `0M` not `MM` | ngam 67342040 | <!-- Feel free to remove check-list items aren't relevant to your change --> tbh, really weird they went for `MM` for the zero-stripped month, maybe could've gone for `M` (one letter)... alas | 2022-05-30T01:16:33Z | 2022-05-30T02:35:41Z | 2022-05-30T02:00:37Z | 2022-05-30T02:00:37Z | 9fc5a85e50fd8933cbbcd5a2c565f1adaa2eed58 | 0 | 639c11360cc952bb4da86bb0e7bf26d087838aba | ed5d2b5fa5bfed1cfc558666f485402adabede3d | CONTRIBUTOR | {
"enabled_by": {
"login": "max-sixty",
"id": 5635139,
"node_id": "MDQ6VXNlcjU2MzUxMzk=",
"avatar_url": "https://avatars.githubusercontent.com/u/5635139?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/max-sixty",
"html_url": "https://github.com/max-sixty",
"followers_url": "https://api.github.com/users/max-sixty/followers",
"following_url": "https://api.github.com/users/max-sixty/following{/other_user}",
"gists_url": "https://api.github.com/users/max-sixty/gists{/gist_id}",
"starred_url": "https://api.github.com/users/max-sixty/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/max-sixty/subscriptions",
"organizations_url": "https://api.github.com/users/max-sixty/orgs",
"repos_url": "https://api.github.com/users/max-sixty/repos",
"events_url": "https://api.github.com/users/max-sixty/events{/privacy}",
"received_events_url": "https://api.github.com/users/max-sixty/received_events",
"type": "User",
"site_admin": false
},
"merge_method": "squash",
"commit_title": "0-padded month. (#6653)",
"commit_message": ""
} |
xarray 13221727 | https://github.com/pydata/xarray/pull/6653 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [pull_requests] (
[id] INTEGER PRIMARY KEY,
[node_id] TEXT,
[number] INTEGER,
[state] TEXT,
[locked] INTEGER,
[title] TEXT,
[user] INTEGER REFERENCES [users]([id]),
[body] TEXT,
[created_at] TEXT,
[updated_at] TEXT,
[closed_at] TEXT,
[merged_at] TEXT,
[merge_commit_sha] TEXT,
[assignee] INTEGER REFERENCES [users]([id]),
[milestone] INTEGER REFERENCES [milestones]([id]),
[draft] INTEGER,
[head] TEXT,
[base] TEXT,
[author_association] TEXT,
[auto_merge] TEXT,
[repo] INTEGER REFERENCES [repos]([id]),
[url] TEXT,
[merged_by] INTEGER REFERENCES [users]([id])
);
CREATE INDEX [idx_pull_requests_merged_by]
ON [pull_requests] ([merged_by]);
CREATE INDEX [idx_pull_requests_repo]
ON [pull_requests] ([repo]);
CREATE INDEX [idx_pull_requests_milestone]
ON [pull_requests] ([milestone]);
CREATE INDEX [idx_pull_requests_assignee]
ON [pull_requests] ([assignee]);
CREATE INDEX [idx_pull_requests_user]
ON [pull_requests] ([user]);