feat: migrate changelog path to CHANGELOG.md

This commit is contained in:
Micheal Wilkinson
2026-03-21 00:27:18 +00:00
parent 62f637614d
commit ba715d9965
7 changed files with 214 additions and 14 deletions

View File

@@ -20,7 +20,7 @@ inputs:
changelog:
description: Path to changelog file relative to repository root.
required: false
default: changelog.md
default: CHANGELOG.md
outputs:
release-id:
@@ -67,7 +67,7 @@ runs:
id: extract-notes
shell: bash
env:
CHANGELOG: ${{ inputs.changelog != '' && inputs.changelog || 'changelog.md' }}
CHANGELOG: ${{ inputs.changelog != '' && inputs.changelog || 'CHANGELOG.md' }}
RELEASE_VERSION: ${{ steps.resolve-version.outputs.version }}
RUNNER_TEMP: ${{ runner.temp }}
run: |