Can Major version changes (aka Breaking Changes) be handled in semantic-release using the exclamation mark?
git commit -m 'feat!: this is breaking, but is not recognized by semantic-release'
Conventional Commit guidelines show that breaking changes…
Hi am using semantic release for versioning in my repo.
In my Gitlab when i merge my branch with master my tag increases according to the commit and it works fine.
Is there any way for me to get the " next tag version " that will come before the…
Using semantic-release in our Github workflows.
They are setup like this:
[
{name: 'main', prerelease: false},
{name: 'staging', prerelease: true},
{name: 'development', prerelease: true}
]
Pushes to development are deployed to development…
I'm using semantic release in a Github repository to create automatic releases on push.
The release needs to commit package.json and CHANGELOG.md to my protected branch.
I used to provide a personal token from my admin account to allow…
I have a C# project and would like to add semantic versioning to it. So whenever I push to the main branch I want to create a new release and autogenerate a new version number based on the commit types. I think semantic-release does the job very…
I have a npm package which i publish with semantic-release . My master branch is currently on version 2.0.1 , but we recently found a bug for version v1.0.5 and need to fix it by releasing v1.0.6, I checked out from v1.0.5 branch and fixed the bug,…
I've been added to a repo which uses semantic-release to automate bumping up the version of the NPM package. The repo uses the Conventional Commits specification and has a very limited README.
If I was to create a feature/ABC-123 branch which…
When I create a commit like this, git commit -m'BREAKING CHANGE: foo bar' and push up semantic-release tells me,
[@semantic-release/commit-analyzer] › ℹ Analyzing commit: BREAKING CHANGE: Changes from…
My goal is configure semantic-release to create tag from the protected branches like this:
npx semantic-release --plugins @semantic-release/commit-analyzer --branches {'name': 'release/super-feature', 'prerelease': true}
I'm expecting that tag…
I'm trying to use semantic-release to publish to a scoped private registry on gitlab but I keep getting error because it's trying to auth against the public registry instead the private one.
Here are my settings (with some things…
I have the following problem: As soon, as my pipeline starts and a release should be published by semantic-release, nothing happens. Only the correct label is created.
My .releaserc looks like this:
{
"branches": ["master"],
"plugins": [
…
I would love to use semantic-release to manage our semantic versioning. For that I tried to integrate it into our Gitlab CI. I followed some examples and provided the necessary environment variables to push code to the repo. When semantic-release…
I am trying to write a gitlab ci job rule that does not run when only CHANGELOG.md is committed into the default branch. However, if CHANGELOG.md is updated along with other files in the commit, then run the job. Is this possible? Thank you!
The…