Skip to content

Commit

Permalink
fix: add skip ci to bump commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jcrqr committed Jun 30, 2022
1 parent 233db2d commit 2143d08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/gitsemver/project.go
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ func (p *Project) Bump(versionFilenamesAndKeys []string, auth AuthMethod, vPrefi
}
}

if _, err := git.CreateCommit(p.Repo(), fmt.Sprintf("bump: %s -> %s", latest.String(), next.String())); err != nil {
if _, err := git.CreateCommit(p.Repo(), fmt.Sprintf("bump: %s -> %s [skip ci]", latest.String(), next.String())); err != nil {
return err
}
}
Expand Down

0 comments on commit 2143d08

Please sign in to comment.