Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/validate-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
required: false
type: string
default: 'error'
validation-depth:
required: false
type: string
default: '10'
jobs:
changelog:
runs-on: ubuntu-latest
Expand All @@ -17,6 +21,7 @@ jobs:
with:
path: ./CHANGELOG.md
validation_level: ${{ inputs.validation-level }}
validation_depth: ${{ inputs.validation-depth }}
- name: Validate if changelog is updated
uses: dangoslen/changelog-enforcer@v3
with:
Expand Down
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [1.2.0] - 2025-04-05

### Added

- Added ability to set `validation-depth` on the validate changelog action.

## [1.1.0] - 2025-03-29

### Added
Expand Down Expand Up @@ -422,7 +428,9 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
- Gradle helpers for Fabric and Forge projects.
- CI workflows.

[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v1.1.0...HEAD
[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v1.2.0...HEAD

[1.2.0]: https://github.com/refinedmods/refinedarchitect/compare/v1.1.0...v1.2.0

[1.1.0]: https://github.com/refinedmods/refinedarchitect/compare/v1.0.0...v1.1.0

Expand Down
Loading