Skip to content

Commit

Permalink
Merge pull request #56 from refinedmods/release/0.7.1
Browse files Browse the repository at this point in the history
Release v0.7.1
  • Loading branch information
raoulvdberge authored Jul 7, 2023
2 parents cfb42d1 + a51eb13 commit 61daa69
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/validate-changelog-internal.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name: Validate changelog
on:
pull_request:
types: [ opened, synchronize, reopened, ready_for_review, labeled, unlabeled ]
jobs:
changelog:
uses: ./.github/workflows/validate-changelog.yml
secrets: inherit
9 changes: 6 additions & 3 deletions .github/workflows/validate-changelog.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
name: Validate changelog
on:
pull_request:
types: [ opened, synchronize, reopened, ready_for_review, labeled, unlabeled ]
workflow_call:
inputs:
validation-level:
required: false
type: string
default: 'error'
jobs:
changelog:
runs-on: ubuntu-latest
Expand All @@ -13,7 +16,7 @@ jobs:
uses: mindsers/[email protected]
with:
path: ./CHANGELOG.md
validation_level: 'error'
validation_level: ${{ inputs.validation-level }}
- 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]

## [0.7.1] - 2023-07-07

### Fixed

- Added ability to set changelog validation warning level.

## [0.7.0] - 2023-07-07

### Changed
Expand Down Expand Up @@ -121,7 +127,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/v0.7.0...HEAD
[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.7.1...HEAD

[0.7.1]: https://github.com/refinedmods/refinedarchitect/compare/v0.7.0...v0.7.1

[0.7.0]: https://github.com/refinedmods/refinedarchitect/compare/v0.6.0...v0.7.0

Expand Down

0 comments on commit 61daa69

Please sign in to comment.