170 questions
Advice
0
votes
0
replies
73
views
python-semantic-release + Woodpecker CI: How to support RC builds and keep a grouped changelog for the final release?
I’m struggling to design a correct CI/release workflow using python-semantic-release together with Woodpecker CI, and I feel like I’m mixing concepts incorrectly.
My goals are:
Accumulate multiple ...
0
votes
0
answers
80
views
semantic-release - add `--no-verify` into "execaOptions" when publish plugin `git push` to skip hooks
I want to skip Git hooks while semantic-release/github plugin is pushing tags to remote while doing publish step. The command I am using is npx semantic-release --branches release --no-ci.
Essentially ...
3
votes
2
answers
249
views
semantic-release fails in GitLab CI: Commit rejected due to non-whitelisted author email
I'm using semantic-release in a GitLab CI pipeline. The release fails at the @semantic-release/git plugin step due to this error:
remote: ERROR: New commit has non-whitelisted author email: [semantic-...
2
votes
1
answer
110
views
Possibility to hide Semantic Release Skipped pipelines in ToBeContinuous
I've implemented pipeline with semantic release step that generates backlog etc...
It generates two [skip ci] pipelines :
- One with changelog and version file
- One which tag the release
Here is my ...
0
votes
1
answer
165
views
Node.js semantic release is not properly taking the ranges for the hotfix branches
I have a hotfixes strategy to deploy from branches with the name as: N.N.x example: 0.30.x
I have next configuration of the semantic release:
branches: [
"main",
"+([0-9])?(.{+...
0
votes
2
answers
3k
views
Semantic Versioning - pre release
I have latest release version ex. v1.6.0 (master)
then I create new prerelease and it automatically creates pre release + tag
v1.6.0-develop.1 (develop branch)
the problem is that in github releases ...
3
votes
1
answer
286
views
customize semantic-release gitlab release description
I am trying to create a migration notes section for the next generated semantic-release with the help of semantic-release based on the merge-request description of the last commits.
it works with my ...
0
votes
1
answer
25
views
How to fix the error: apm CLI must be installed with semantic-release
I do get the following error apm CLI must be installed with semantic-release
ci.yml
name: CI
on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}...
-1
votes
1
answer
229
views
Jenkins with semantic release
I install semantic release by add this command on package.json:
"release": "npx -p @semantic-release/changelog@^5.0.0 -p @semantic-release/git@^9.0.0 -p semantic-release@^17.0.0 ...
0
votes
0
answers
136
views
Change description missing in git releases triggered by semantic release
I recently implemented semantic-release and versioning plugins in my application to streamline versioning, tagging, and releases. Below is my releaserc.yml configuration:
branches:
- '+([0-9])?(.{+([...
2
votes
0
answers
278
views
Semantic Release GitHub action cannot publish changes because of protected branch
In my GitHub repository, I configured Semantic Release action:
name: Semantic Release
on:
push:
branches: [main]
jobs:
release:
name: Release version
permissions:
...
0
votes
1
answer
76
views
Remove linebreaks when using {{each}}
I have the following handlebars template to generate a changelog.md with gitmoji:
# 🎉 {{nextRelease.version}}
{{#with commits}}
{{#if sparkles}}
## ✨ New Features
{{#each sparkles}}
- {{> ...
0
votes
0
answers
330
views
How can I version beta releases with npm semantic-release?
Before anything, let me explain my current setup:
I have 2 branches on my github repo: "main" and "develop"
main is the production one
develop is the dev&test environment
...
2
votes
1
answer
2k
views
@semantic-release/git and protected branches
When using the semantic-release plugin @semantic-release/git on protected branch (master is protected with maintainers allowed to merge and no one allowed to push and merge)
I have
remote: GitLab: You ...
0
votes
0
answers
256
views
@semantic-release/commit-analyzer - Analyze all commits even from other branches
My .releaserc.yml is
plugins:
- "@semantic-release/commit-analyzer"
branches:
- "master"
I have that git log
* 224400b (HEAD -> master) fix: merge-1
|\
| * a28d643 (dev) ...