Compare commits

...

3 Commits
0.6.2 ... 0.7.2

Author SHA1 Message Date
72a373b703 ci: refactor release and prerelease into single workflow (#22)
All checks were successful
CD / Release (push) Successful in 9s
Reviewed-on: #22
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2025-12-12 20:33:13 +01:00
9555d6ea73 ci: use reusable release git tag action (#21)
All checks were successful
CD / Release (push) Successful in 14s
Reviewed-on: #21
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2025-12-12 20:29:00 +01:00
d9ae7d7ff4 feat: handle all conven branches as chore (#20)
All checks were successful
CD / Release (push) Successful in 26s
Handling all semver/conventional commit branches as "chore", according to: https://docs.renovatebot.com/semantic-commits/#changing-the-semantic-commit-type

Reviewed-on: #20
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2025-12-12 20:25:04 +01:00
4 changed files with 4 additions and 39 deletions

View File

@@ -1,15 +0,0 @@
name: Release Git tag
description: Release the Git tag
inputs:
tag:
description: The tag to release
required: true
runs:
using: "composite"
steps:
- shell: bash
run: |
git tag ${{ inputs.tag }}
git push origin ${{ inputs.tag }}

View File

@@ -4,6 +4,7 @@ on:
push:
branches:
- main
workflow_dispatch:
jobs:
release:
@@ -18,6 +19,7 @@ jobs:
uses: https://gitea.t000-n.de/t.behrendt/conventional-semantic-git-tag-increment@0.1.1
with:
token: ${{ secrets.GITEA_TOKEN }}
- uses: ./.gitea/actions/release-git-tag
prerelease: ${{ github.event_name == 'workflow_dispatch' }}
- uses: https://gitea.t000-n.de/t.behrendt/actions/release-git-tag@0.0.3
with:
tag: ${{ steps.tag.outputs.new-tag }}

View File

@@ -1,22 +0,0 @@
name: Prerelease
on:
workflow_dispatch:
jobs:
prerelease:
name: Prerelease
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
with:
fetch-depth: 0
- name: Increment tag
id: tag
uses: https://gitea.t000-n.de/t.behrendt/conventional-semantic-git-tag-increment@0.1.1
with:
token: ${{ secrets.GITEA_TOKEN }}
prerelease: true
- uses: ./.gitea/actions/release-git-tag
with:
tag: ${{ steps.tag.outputs.new-tag }}

View File

@@ -2,5 +2,5 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"dependencyDashboard": true,
"semanticCommits": "enabled",
"extends": ["config:best-practices"]
"extends": ["config:best-practices", ":semanticCommitTypeAll(chore)"]
}