From fb39f8b05a7593b0f65f382f55916bf5725b4fc7 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Fri, 28 Mar 2025 02:32:49 +0100 Subject: [PATCH 1/2] lint fix --- .releaserc.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.releaserc.js b/.releaserc.js index aa60e1dde7..8fb2abd191 100644 --- a/.releaserc.js +++ b/.releaserc.js @@ -94,9 +94,9 @@ async function config() { }], // Back-merge module runs last because if it fails it should not impede the release process [ - "@saithodev/semantic-release-backmerge", + '@saithodev/semantic-release-backmerge', { - "backmergeBranches": [ + 'backmergeBranches': [ // { from: 'beta', to: 'alpha' }, // { from: 'release', to: 'beta' }, { from: 'release', to: 'alpha' }, From 6b4f1f9481b5836fac9a5eeb8ea5273cc3ca6fed Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Fri, 28 Mar 2025 02:33:24 +0100 Subject: [PATCH 2/2] Update .releaserc.js --- .releaserc.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/.releaserc.js b/.releaserc.js index 8fb2abd191..a709a0e233 100644 --- a/.releaserc.js +++ b/.releaserc.js @@ -30,12 +30,10 @@ async function config() { // Get branch const branch = ref?.split('/')?.pop()?.split('-')[0] || '(current branch could not be determined)'; - // eslint-disable-next-line no-console console.log(`Running on branch: ${branch}`); // Set changelog file const changelogFile = `./changelogs/CHANGELOG_${branch}.md`; - // eslint-disable-next-line no-console console.log(`Changelog file output to: ${changelogFile}`); // Load template file contents