# Get a Breaking-Changes-First Release Notes Report

**Use case:** 

Surface only the changes that matter — a breaking-changes-first triage report across your monitored changelog sources.

## Input

```json
{
  "sources": [
    {
      "name": "GitHub Changelog",
      "template": "github"
    },
    {
      "name": "Cloudflare Blog",
      "template": "cloudflare"
    }
  ],
  "severityFilter": "BREAKING",
  "enableLlmSummary": false,
  "llmModel": "gpt-4o-mini",
  "maxEntriesPerSource": 100
}
```

## Output

```json
{
  "runDate": {
    "label": "Run date",
    "format": "string"
  },
  "sourcesChecked": {
    "label": "Sources checked",
    "format": "integer"
  },
  "totalNewEntries": {
    "label": "New entries",
    "format": "integer"
  },
  "totalBreaking": {
    "label": "Breaking",
    "format": "integer"
  },
  "totalWarning": {
    "label": "Warning",
    "format": "integer"
  },
  "totalInfo": {
    "label": "Info",
    "format": "integer"
  }
}
```

## About this Actor

This example demonstrates how to use [Changelog Triage Agent — AI Severity Monitor](https://apify.com/joeslade/changelog-triage-agent) with a specific input configuration. Visit the [Actor detail page](https://apify.com/joeslade/changelog-triage-agent) to learn more, explore other use cases, and run it yourself.