Skip to content

Commit

Permalink
Merge pull request #153 from sliit-foss/fix/automatic-versioning-skip-ci
Browse files Browse the repository at this point in the history
Fix(automatic-versioning): added cleanup option to commit
  • Loading branch information
Akalanka47000 authored Mar 2, 2024
2 parents 7d15964 + 59785b2 commit 3dc6ac2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/automatic-versioning/src/types/default.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ const runner = (
versionUpdate === "prerelease" ? versionUpdate : `${versionUpdate} release`
}"`;
await run("git add .").then(async () => {
await run(`git commit -m ${successMsg} --trailer "skip-checks:true" --no-verify`).then(() =>
console.info(successMsg.green)
await run(`git commit -m ${successMsg} --trailer "skip-checks:true" --no-verify --cleanup=verbatim`).then(
() => console.info(successMsg.green)
);
});
}
Expand Down

0 comments on commit 3dc6ac2

Please sign in to comment.