GET
github_pulls_list_review_comments.py
from charter.packs import github
result = await github.pulls_list_review_comments.ainvoke({"owner": ..., "repo": ..., "pullNumber": ...})
Requires
repo, read:user. Pages by number: page with per_page.Path parameters
| Field | Type | Description |
|---|---|---|
owner * | string | The account owner of the repository. The name is not case sensitive. |
repo * | string | The name of the repository without the .git extension. The name is not case sensitive. |
pullNumber * | integer | The number that identifies the pull request. |
Query parameters
| Field | Type | Description |
|---|---|---|
perPage | integer | The number of results per page (max 100). Defaults to 30. ≥ 1; ≤ 100; defaults to 30 |
page | integer | The page number of the results to fetch. Defaults to 1. ≥ 1; defaults to 1 |
sort | CodeScanningSort | The property to sort the results by. GitHub uses created when this is absent. |
direction | SortDirection | The direction to sort results. Ignored without sort parameter. |
since | string | Only show results that were last updated after the given time, in ISO 8601 format: YYYY-MM-DDTHH:MM:SSZ. format date-time |