home / github

Menu
  • Search all tables
  • GraphQL API

pull_requests

Table actions
  • GraphQL API for pull_requests

4 rows where user = 3234522

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: title, 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
998459171 PR_kwDOAMm_X847g0cj 6794 closed 0 Fix typos found by codespell DimitriPapadopoulos 3234522 The `inferrable` → `inferable` change is debatable, but the most common spelling does appear to be the latter (Google hits support that): * [Merriam-Webster](https://www.merriam-webster.com/dictionary/inferable) * [Collins](https://www.collinsdictionary.com/dictionary/english/infer) * [Wiktionary](https://en.wiktionary.org/wiki/inferable) * [Lexico](https://www.lexico.com/definition/inferable) - [ ] Closes #xxxx - [ ] Tests added - [ ] User visible changes (including notable bug fixes) are documented in `whats-new.rst` - [ ] New functions/methods are listed in `api.rst` 2022-07-16T16:35:51Z 2022-07-18T13:04:46Z 2022-07-16T17:02:55Z 2022-07-16T17:02:55Z f045401ca79ecd1b80a0da67f44404c4e208fe31     0 ddb3a081fb418fc9b75cec72e6bc7230d378c615 e0860150a4ea4fa71bb06349963c2777e499a59c CONTRIBUTOR
{
    "enabled_by": {
        "login": "andersy005",
        "id": 13301940,
        "node_id": "MDQ6VXNlcjEzMzAxOTQw",
        "avatar_url": "https://avatars.githubusercontent.com/u/13301940?v=4",
        "gravatar_id": "",
        "url": "https://api.github.com/users/andersy005",
        "html_url": "https://github.com/andersy005",
        "followers_url": "https://api.github.com/users/andersy005/followers",
        "following_url": "https://api.github.com/users/andersy005/following{/other_user}",
        "gists_url": "https://api.github.com/users/andersy005/gists{/gist_id}",
        "starred_url": "https://api.github.com/users/andersy005/starred{/owner}{/repo}",
        "subscriptions_url": "https://api.github.com/users/andersy005/subscriptions",
        "organizations_url": "https://api.github.com/users/andersy005/orgs",
        "repos_url": "https://api.github.com/users/andersy005/repos",
        "events_url": "https://api.github.com/users/andersy005/events{/privacy}",
        "received_events_url": "https://api.github.com/users/andersy005/received_events",
        "type": "User",
        "site_admin": false
    },
    "merge_method": "squash",
    "commit_title": "Fix typos found by codespell (#6794)",
    "commit_message": ""
}
xarray 13221727 https://github.com/pydata/xarray/pull/6794  
1573797440 PR_kwDOAMm_X85dzj5A 8375 closed 0 Fix typos found by codespell DimitriPapadopoulos 3234522 <!-- Feel free to remove check-list items aren't relevant to your change --> - [ ] Closes #xxxx - [ ] Tests added - [ ] User visible changes (including notable bug fixes) are documented in `whats-new.rst` - [ ] New functions/methods are listed in `api.rst` 2023-10-25T22:37:45Z 2023-10-26T18:17:38Z 2023-10-26T17:26:59Z 2023-10-26T17:26:58Z bb489fa7fbdf5017c1c31a7a8344477c9991c6eb     0 e5772063d8ce56d6af4bb4844e784d86dd0c5ea9 cef76ecc38751a615a7615b29244f99ab6a8995c CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/8375  
1574420457 PR_kwDOAMm_X85d17_p 8379 closed 0 Do not intercept left/right keys in HTML docs DimitriPapadopoulos 3234522 This will be the default in upcoming versions of Sphinx, but let's proactively and explicitly set to `False`, instead of the current and implicit `True`. See warning in https://github.com/pydata/xarray/pull/8375#issuecomment-1780716514. See: https://github.com/pydata/pydata-sphinx-theme/issues/1492 2023-10-26T09:22:58Z 2023-10-26T14:26:36Z 2023-10-26T14:00:01Z 2023-10-26T14:00:01Z cef76ecc38751a615a7615b29244f99ab6a8995c     0 4d1a70cf99755d509b153001ff319ec6c8fb0a18 043b3dc36e3c2a4b8928ddd559c4f7291d563099 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/8379  
1604138883 PR_kwDOAMm_X85fnTeD 8457 closed 0 Fix typos found by codespell DimitriPapadopoulos 3234522   2023-11-16T10:41:45Z 2023-11-16T17:02:55Z 2023-11-16T15:29:54Z 2023-11-16T15:29:54Z 72abfdf9bd6aef99c0397f6dadc383c28abc6ce0     0 b96b6e3f5aa21e8660e78eca4e9e6043ce98e65a 141147434cb1f4547ffff5e28900eeb487704f08 CONTRIBUTOR   xarray 13221727 https://github.com/pydata/xarray/pull/8457  

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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]);
Powered by Datasette · Queries took 3118.641ms · About: xarray-datasette