From 84d0da4478cbe6b0ba6d60b3251544ed46597a36 Mon Sep 17 00:00:00 2001 From: "Max P." Date: Sat, 14 Jun 2025 18:42:20 +0200 Subject: [PATCH] feat(workflows): add automated changelog and release workflow - Introduces a workflow triggered on main branch pushes - Automates changelog generation and release creation using a custom action --- .gitea/workflows/release.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .gitea/workflows/release.yml diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml new file mode 100644 index 0000000..a8e9761 --- /dev/null +++ b/.gitea/workflows/release.yml @@ -0,0 +1,15 @@ +name: Auto Changelog & Release + +on: + push: + branches: + - main + - "**" + +jobs: + release: + runs-on: ubuntu-latest + steps: + - uses: https://git.0xmax42.io/actions/auto-changelog-release-action@978d002e9eb82247da53ddfb4fa2226527290919 + with: + fetch-depth: 0