.github/skills/release-notes-generator/SKILL.md
Generate release notes from CHANGELOG.md entries since the last release. Formats for GitHub Release publication. Triggers on: release preparation, tag creation.
npx skillsauth add aztfmod/terraform-provider-azurecaf release-notes-generatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Read CHANGELOG.md and extract everything under ## [Unreleased] up to the next ## [vX.Y.Z] header.
Structure the release notes:
## What's Changed
### ✨ New Features
<entries from ### Added>
### 🔧 Changes
<entries from ### Changed>
### 🐛 Bug Fixes
<entries from ### Fixed>
### ⚠️ Deprecated
<entries from ### Deprecated>
### 💥 Breaking Changes
<entries from ### Removed>
---
**Full Changelog**: <link to compare between last tag and new tag>
Omit empty sections.
Prepare the CHANGELOG update — replace ## [Unreleased] content with a new versioned section:
## [Unreleased]
## [vX.Y.Z] - YYYY-MM-DD
### Added
<moved entries>
### Fixed
<moved entries>
Return:
development
Analyze test failure output to identify root cause and suggest fixes. Use when build or test failures occur. Triggers on: test failures, build errors, CI failures.
development
Validate a resource definition end-to-end using terraform test with mock_provider azurerm. Proves the CAF-generated name is accepted by the azurerm provider schema without Azure credentials. Use after provider-build-test succeeds to run the mocked azurerm integration test.
documentation
Analyze changes since the last release tag and determine the appropriate semantic version bump (patch/minor/major) based on CHANGELOG entries and commit types. Triggers on: release preparation, version planning.
testing
Compare two versions of resourceDefinition.json (e.g., branch vs main) and produce a structured change summary. Triggers on: PR review, audit, before/after comparison.