# GitHub Issues Data Scraper for CLI Repository

**Use case:** 

This task extracts all public issues from the specified GitHub repository, providing detailed data including title, body, state, labels, author, and comment counts. Specifically targeting the 'cli/cli' repository without including pull requests, this configuration streamlines the collection of issue data for analysis and reporting.

## Input

```json
{
  "repositories": [
    "https://github.com/cli/cli"
  ],
  "state": "all",
  "includePullRequests": false,
  "maxResults": 250
}
```

## Output

```json
{
  "repo_full_name": {
    "label": "Repo"
  },
  "number": {
    "label": "#"
  },
  "title": {
    "label": "Title"
  },
  "state": {
    "label": "State"
  },
  "author": {
    "label": "Author"
  },
  "labels": {
    "label": "Labels"
  },
  "comments": {
    "label": "Comments"
  },
  "is_pull_request": {
    "label": "Is pull request"
  },
  "html_url": {
    "label": "Html url"
  },
  "created_at": {
    "label": "Created at"
  },
  "scraped_at": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [GitHub Issues Scraper – Repo Issues & Labels](https://apify.com/devil_port369-owner/github-issues-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/devil_port369-owner/github-issues-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/devil_port369-owner/github-issues-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
