Files
gist/.gitea/workflows/release.yml
Max P. d1ce6d90fb chore(workflows): add release workflow and merge message template
- Add a default merge message template for pull requests
- Introduce a release workflow to automate changelog generation
- Configure workflow to trigger on pushes to main and other branches
2025-06-27 21:32:35 +02:00

20 lines
383 B
YAML

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 }}