From 34d9e6865c8e59fcc4dc7825a1dbabc36356f2f1 Mon Sep 17 00:00:00 2001 From: raoulvdberge Date: Fri, 7 Jul 2023 20:14:31 +0200 Subject: [PATCH] fix: validate commit messages now only logs a warning instead of failing the build There are some historical versions that got incremented wrongly based on semver. We can't change the past, so log warnings for now. --- .github/workflows/validate-commit-messages.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/validate-commit-messages.yml b/.github/workflows/validate-commit-messages.yml index 4decd4a8c..43143da85 100644 --- a/.github/workflows/validate-commit-messages.yml +++ b/.github/workflows/validate-commit-messages.yml @@ -2,4 +2,6 @@ name: Validate commit messages on: [ pull_request ] jobs: validate-commit-messages: - uses: refinedmods/refinedarchitect/.github/workflows/validate-commit-messages.yml@v0.6.0 \ No newline at end of file + uses: refinedmods/refinedarchitect/.github/workflows/validate-commit-messages.yml@v0.7.1 + with: + validation-level: 'warn' \ No newline at end of file