chore(workflows): add CI workflows and configuration files

- Add default merge message template for PRs
- Introduce workflow for major version tag creation on release
- Add workflow for auto changelog and release generation
- Add git-cliff configuration for changelog formatting
- Configure `.vscode` workspace settings and `.gitignore` updates
This commit is contained in:
2025-07-09 21:28:18 +02:00
commit 93dda9a578
7 changed files with 201 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
name: Auto Changelog & Release
on:
push:
branches:
- main
- "**"
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Release
uses: https://git.0xmax42.io/actions/auto-changelog-release-action@v0
with:
token: ${{ secrets.RELEASE_PUBLISH_TOKEN }}