github_issues_list_for_repo
List repository issues with customizable filters such as state, assignee, labels, and milestone to find exactly what you need.
Instructions
List repository issues
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| owner | Yes | owner | |
| repo | Yes | repo | |
| milestone | No | If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone are accepted. If the string `none` is passed, issues without milestones are returned. | |
| state | No | Indicates the state of the issues to return. | |
| assignee | No | Can be the name of a user. Pass in `none` for issues with no assigned user, and `*` for issues assigned to any user. | |
| type | No | Can be the name of an issue type. If the string `*` is passed, issues with any type are accepted. If the string `none` is passed, issues without type are returned. | |
| creator | No | The user that created the issue. | |
| mentioned | No | A user that's mentioned in the issue. | |
| labels | No | A list of comma separated label names. Example: `bug,ui,@high` | |
| sort | No | What to sort results by. | |
| direction | No | The direction to sort the results by. | |
| since | No | Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`. | |
| per_page | No | The number of results per page (max 100). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." | |
| page | No | The page number of the results to fetch. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." |