From 6e53ad321adea684306dab2105f83040b2e64247 Mon Sep 17 00:00:00 2001 From: raoulvdberge Date: Sat, 5 Apr 2025 15:13:52 +0200 Subject: [PATCH 1/2] feat: ability to set validation depth on changelog action --- .github/workflows/validate-changelog.yml | 5 +++++ CHANGELOG.md | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/.github/workflows/validate-changelog.yml b/.github/workflows/validate-changelog.yml index 3fe4a62..76c6be9 100644 --- a/.github/workflows/validate-changelog.yml +++ b/.github/workflows/validate-changelog.yml @@ -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 @@ -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: diff --git a/CHANGELOG.md b/CHANGELOG.md index 603dd0c..3907c76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Added + +- Added ability to set `validation-depth` on the validate changelog action. + ## [1.1.0] - 2025-03-29 ### Added From 3120057dd71f1c5fb0319a053b0b014b90067cbf Mon Sep 17 00:00:00 2001 From: raoulvdberge Date: Sat, 5 Apr 2025 13:14:27 +0000 Subject: [PATCH 2/2] chore: prepare release v1.2.0 --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3907c76..3eb3fda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ 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. @@ -426,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