pull_requests
1 row where user = 19758978
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1539947248 | PR_kwDOAMm_X85bybrw | 8266 | closed | 0 | Don't raise rename warning if it is a no operation | Hoxbro 19758978 | <!-- Feel free to remove check-list items aren't relevant to your change --> - [x] Closes #8265 - [x] Tests added | 2023-10-03T12:51:35Z | 2023-10-04T20:27:37Z | 2023-10-04T20:24:50Z | 2023-10-04T20:24:50Z | e09609c234590dffb1b46c8526c3524da561c0ec | 0 | 33bf0ccd2e5fc6b5949d7e1aa02088df5e93239f | 25c76892b2688e54483209e3e34012abcb5d6b1a | 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": "Don't raise rename warning if it is a no operation (#8266)",
"commit_message": "* Don't raise rename warning if it is a no operation\r\n\r\n* xr.Dataset -> Dataset\r\n\r\n* Remove pytest.warns\r\n\r\n* Add whatsnew"
} |
xarray 13221727 | https://github.com/pydata/xarray/pull/8266 |
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]);