From 25af12e9466ca9b4778032caf1d396a4b7ceb799 Mon Sep 17 00:00:00 2001 From: "anthony.bellancourt" Date: Mon, 1 Jul 2024 22:07:02 +0200 Subject: [PATCH] Enable unclean working directory for git in release-it config The `.release-it.json` configuration has been updated to allow releases to ramp up even if the Git working directory is unclean. This change is made to potentially streamline the release process by eliminating the necessity of a clean working state. --- .release-it.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.release-it.json b/.release-it.json index 4e93f87..5968c07 100644 --- a/.release-it.json +++ b/.release-it.json @@ -8,6 +8,7 @@ }, "git": { "requiredBranch": "main", + "requireCleanWorkingDir": false, "commitMessage": "chore: release v%s" }, "hooks": {