File tree Expand file tree Collapse file tree
packages/cli/src/cli/cmd/ci/flows Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ---
2+ " lingo.dev " : patch
3+ ---
4+
5+ add --no-verify to ci commits
Original file line number Diff line number Diff line change @@ -27,9 +27,12 @@ export class InBranchFlow extends IntegrationFlow {
2727 this . ora . start ( "Committing changes" ) ;
2828 execSync ( `git add .` , { stdio : "inherit" } ) ;
2929 execSync ( `git status --porcelain` , { stdio : "inherit" } ) ;
30- execSync ( `git commit -m "${ this . platformKit . config . commitMessage } "` , {
31- stdio : "inherit" ,
32- } ) ;
30+ execSync (
31+ `git commit -m "${ this . platformKit . config . commitMessage } " --no-verify` ,
32+ {
33+ stdio : "inherit" ,
34+ } ,
35+ ) ;
3336 this . ora . succeed ( "Changes committed" ) ;
3437
3538 this . ora . start ( "Pushing changes to remote" ) ;
Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ export class PullRequestFlow extends InBranchFlow {
193193 if ( hasChanges ) {
194194 execSync ( "git add ." , { stdio : "inherit" } ) ;
195195 execSync (
196- `git commit -m "chore: sync with ${ this . platformKit . platformConfig . baseBranchName } "` ,
196+ `git commit -m "chore: sync with ${ this . platformKit . platformConfig . baseBranchName } " --no-verify ` ,
197197 {
198198 stdio : "inherit" ,
199199 } ,
You can’t perform that action at this time.
0 commit comments