From dbeb8fd56e5f14dcc4a7b756e48051ce38aa262b Mon Sep 17 00:00:00 2001 From: Simon Priet <105607989+SimonPistache@users.noreply.github.com> Date: Thu, 13 Mar 2025 16:27:04 +0100 Subject: [PATCH] fix(#215): Fix tabs in yml config for semantic release (#217) * ci(#215): Fix auto-release not triggered The Workflow file was using an invalid keyword "merged". The right keywork to use is "closed". * ci(#215): Fix tabs in yml config for semantic release The `.releaserc.yml` file was containing tabs and Semantic Release was unhappy about it. --- .releaserc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.releaserc.yml b/.releaserc.yml index 6114e05..e3b42ab 100644 --- a/.releaserc.yml +++ b/.releaserc.yml @@ -6,4 +6,4 @@ plugins: - "@semantic-release/github" branches: - - main \ No newline at end of file + - main \ No newline at end of file