From db10e5cc5746ccb26f4e8381c83107313e389aab Mon Sep 17 00:00:00 2001 From: raoulvdberge Date: Sat, 16 Mar 2024 13:35:18 +0100 Subject: [PATCH 1/2] fix: crowdin translation branch name validation --- .github/workflows/validate-branch-name.yml | 2 +- CHANGELOG.md | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/validate-branch-name.yml b/.github/workflows/validate-branch-name.yml index 91c12df..48932a5 100644 --- a/.github/workflows/validate-branch-name.yml +++ b/.github/workflows/validate-branch-name.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Validate if branch name is valid - if: (!startsWith(github.event.pull_request.head.ref, 'release/')) && (!startsWith(github.event.pull_request.head.ref, 'hotfix/')) + if: (!startsWith(github.event.pull_request.head.ref, 'release/')) && (!startsWith(github.event.pull_request.head.ref, 'hotfix/')) && github.event.pull_request.head.ref != 'crowdin-translations' uses: deepakputhraya/action-branch-name@5f1cc199284b75145ec2d13434422e6987cf6af8 with: regex: '^([a-z])+\/GH-\d*\/([a-z-])+$' diff --git a/CHANGELOG.md b/CHANGELOG.md index 19bcc22..9a836a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Fixed + +- Branch name validation for Crowdin translation branches no longer fails. + ## [0.11.4] - 2024-01-29 ### Fixed From 7bb705073114276a1dad5f0a03b99636f9ac8cdd Mon Sep 17 00:00:00 2001 From: raoulvdberge Date: Sat, 16 Mar 2024 12:41:49 +0000 Subject: [PATCH 2/2] chore: prepare release v0.11.5 --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a836a1..ae1352f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.11.5] - 2024-03-16 + ### Fixed - Branch name validation for Crowdin translation branches no longer fails. @@ -202,7 +204,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.11.4...HEAD +[Unreleased]: https://github.com/refinedmods/refinedarchitect/compare/v0.11.5...HEAD + +[0.11.5]: https://github.com/refinedmods/refinedarchitect/compare/v0.11.4...v0.11.5 [0.11.4]: https://github.com/refinedmods/refinedarchitect/compare/v0.11.3...v0.11.4