pull_requests
2 rows where user = 19871268
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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1038947921 | PR_kwDOAMm_X8497RZR | 6961 | closed | 0 | Avoid use of random numbers in `test_weighted.test_weighted_operations_nonequal_coords` | lukeconibear 19871268 | ### Avoid use of random numbers in `test_weighted.test_weighted_operations_nonequal_coords` - [x] Closes #6504 - [x] Tests added - [x] User visible changes (including notable bug fixes) are documented in `whats-new.rst` | 2022-08-28T19:30:52Z | 2022-08-29T21:22:03Z | 2022-08-29T20:42:29Z | 2022-08-29T20:42:29Z | 0496cb441a237c5edc0727e77b1be83e1dde6c67 | 0 | f67d29a4196f5d8df22fb87a5789a7e8f8866c53 | 3d3b236df3f8f5982760e68e064eb0db2aacc4a2 | CONTRIBUTOR | {
"enabled_by": {
"login": "mathause",
"id": 10194086,
"node_id": "MDQ6VXNlcjEwMTk0MDg2",
"avatar_url": "https://avatars.githubusercontent.com/u/10194086?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mathause",
"html_url": "https://github.com/mathause",
"followers_url": "https://api.github.com/users/mathause/followers",
"following_url": "https://api.github.com/users/mathause/following{/other_user}",
"gists_url": "https://api.github.com/users/mathause/gists{/gist_id}",
"starred_url": "https://api.github.com/users/mathause/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/mathause/subscriptions",
"organizations_url": "https://api.github.com/users/mathause/orgs",
"repos_url": "https://api.github.com/users/mathause/repos",
"events_url": "https://api.github.com/users/mathause/events{/privacy}",
"received_events_url": "https://api.github.com/users/mathause/received_events",
"type": "User",
"site_admin": false
},
"merge_method": "squash",
"commit_title": "Avoid use of random numbers in `test_weighted.test_weighted_operations_nonequal_coords` (#6961)",
"commit_message": "* avoid use of random numbers in test weighted\r\n\r\n* corrected PR number in whats-new.rst\r\n\r\n* explicit variable names for types\r\n\r\n* removed unnecessary comment\r\n\r\n* changes from review\r\n\r\n* typo in docstring\r\n\r\n* Update xarray/tests/test_weighted.py\r\n\r\nCo-authored-by: Mathias Hauser <mathause@users.noreply.github.com>\r\n\r\nCo-authored-by: Mathias Hauser <mathause@users.noreply.github.com>"
} |
xarray 13221727 | https://github.com/pydata/xarray/pull/6961 | |||
| 1038963035 | PR_kwDOAMm_X8497VFb | 6963 | closed | 0 | Fixed type errors in `mypy` GitHub Action | lukeconibear 19871268 | ### Fixed type errors in `mypy` GitHub Action - [x] Closes #6962 Running the GitHub Action for [mypy](https://github.com/pydata/xarray/blob/main/.github/workflows/ci-additional.yaml#L121) locally returns successful: ```bash $ python -m mypy --install-types --non-interactive Success: no issues found in 144 source files ``` | 2022-08-28T20:59:28Z | 2022-11-22T00:09:54Z | 2022-11-21T21:31:27Z | 2022-11-21T21:31:27Z | 88a75c907cf973facfbe65e9e0f5744bff3c0b63 | 0 | 27cdc3326f93b2ac1cf10dbdff6cdbac4a44284d | d6671dd414370d006254ba3156cb96256ce0e9c7 | CONTRIBUTOR | xarray 13221727 | https://github.com/pydata/xarray/pull/6963 |
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]);