feat: add CI workflows for pull requests and releases
All checks were successful
Lint Pull Request / Lint PR Title (pull_request) Successful in 29s

This commit is contained in:
Jan K9f 2025-04-09 22:43:07 +02:00
commit 69e8b4e2ac
Signed by: jank
GPG key ID: B9F475106B20F144
3 changed files with 113 additions and 0 deletions

16
release.config.cjs Normal file
View file

@ -0,0 +1,16 @@
module.exports = {
branches: ['release'],
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
[
"@semantic-release/changelog",
{
"changelogFile": "docs/CHANGELOG.md"
}
],
["@saithodev/semantic-release-gitea", {
"giteaUrl": "https://git.kjan.de"
}],
],
};