home / github

Menu
  • GraphQL API
  • Search all tables

issue_comments

Table actions
  • GraphQL API for issue_comments

3 rows where author_association = "MEMBER" and issue = 558241968 sorted by updated_at descending

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: created_at (date), updated_at (date)

user 3

  • dcherian 1
  • max-sixty 1
  • andersy005 1

issue 1

  • Add twine check and readthedocs reminder to HOW_TO_RELEASE · 3 ✖

author_association 1

  • MEMBER · 3 ✖
id html_url issue_url node_id user created_at updated_at ▲ author_association body reactions performed_via_github_app issue
590537417 https://github.com/pydata/xarray/pull/3738#issuecomment-590537417 https://api.github.com/repos/pydata/xarray/issues/3738 MDEyOklzc3VlQ29tbWVudDU5MDUzNzQxNw== max-sixty 5635139 2020-02-24T20:39:02Z 2020-02-24T20:39:02Z MEMBER

Though if someone was up for automating the steps, that would be good! (or @dcherian do you disagree? How much of us not doing this is preference vs no one having done it?)

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Add twine check and readthedocs reminder to HOW_TO_RELEASE 558241968
590490139 https://github.com/pydata/xarray/pull/3738#issuecomment-590490139 https://api.github.com/repos/pydata/xarray/issues/3738 MDEyOklzc3VlQ29tbWVudDU5MDQ5MDEzOQ== dcherian 2448579 2020-02-24T18:52:00Z 2020-02-24T18:52:00Z MEMBER

The last time we talked about this there wasn't much interest in automating these steps.

It's mostly fixing docs that takes the longest time. Thanks for the suggestion.

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Add twine check and readthedocs reminder to HOW_TO_RELEASE 558241968
581655351 https://github.com/pydata/xarray/pull/3738#issuecomment-581655351 https://api.github.com/repos/pydata/xarray/issues/3738 MDEyOklzc3VlQ29tbWVudDU4MTY1NTM1MQ== andersy005 13301940 2020-02-03T22:44:52Z 2020-02-03T22:44:52Z MEMBER

Would it be of interest to automate the distribution build, and the PyPI upload via GitHub Workflow?

.github/workflows/publishtopypi.yaml:

```yaml

name: Publishing to PyPI on: release: types: [created, published, prereleased]

jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Set up Python uses: actions/setup-python@v1 with: python-version: '3.x' - name: Install dependencies run: | python -m pip install --upgrade pip python -m pip install setuptools setuptools-scm wheel twine - name: Build and publish env: TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} run: | python setup.py sdist bdist_wheel twine check dist twine upload dist/* ```

{
    "total_count": 0,
    "+1": 0,
    "-1": 0,
    "laugh": 0,
    "hooray": 0,
    "confused": 0,
    "heart": 0,
    "rocket": 0,
    "eyes": 0
}
  Add twine check and readthedocs reminder to HOW_TO_RELEASE 558241968

Advanced export

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

CSV options:

CREATE TABLE [issue_comments] (
   [html_url] TEXT,
   [issue_url] TEXT,
   [id] INTEGER PRIMARY KEY,
   [node_id] TEXT,
   [user] INTEGER REFERENCES [users]([id]),
   [created_at] TEXT,
   [updated_at] TEXT,
   [author_association] TEXT,
   [body] TEXT,
   [reactions] TEXT,
   [performed_via_github_app] TEXT,
   [issue] INTEGER REFERENCES [issues]([id])
);
CREATE INDEX [idx_issue_comments_issue]
    ON [issue_comments] ([issue]);
CREATE INDEX [idx_issue_comments_user]
    ON [issue_comments] ([user]);
Powered by Datasette · Queries took 562.556ms · About: xarray-datasette