# Extract Open Issues from TensorFlow GitHub Repo

**Use case:** 

Retrieve open issues and pull requests from the TensorFlow GitHub repository. Get detailed event data including states, labels, and URLs.

## Input

```json
{
  "mode": "repo",
  "repos": [
    "tensorflow/tensorflow"
  ],
  "org": "kubernetes",
  "user": "torvalds",
  "eventTypes": [
    "issues",
    "pulls"
  ],
  "since": "2026-06-01",
  "maxPerType": 100,
  "maxOrgRepos": 10,
  "ghToken": "",
  "useApifyProxy": true
}
```

## Output

```json
{
  "repo": {
    "label": "Repo",
    "format": "string"
  },
  "type": {
    "label": "Type",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "actor": {
    "label": "Actor",
    "format": "string"
  },
  "createdAt": {
    "label": "Created",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "action": {
    "label": "Action",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [GitHub Activity Stream — AI Agent Dev Monitoring API](https://apify.com/logiover/github-activity-stream) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/github-activity-stream) to learn more, explore other use cases, and run it yourself.