Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: Build

on:
push:
branches: [ main, dev ]
branches: [ main, develop ]
pull_request:
branches: [ main, dev ]
branches: [ main, develop ]

jobs:
build:
runs-on: ubuntu-24.04
runs-on: ubuntu-latest

steps:
- name: Checkout code
Expand Down
38 changes: 38 additions & 0 deletions .github/workflows/bumpdevversion.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# SPDX-FileCopyrightText: 2025 All contributors
#
# SPDX-License-Identifier: GPL-2.0-or-later

name: Bump Development Release Version

on:
push:
branches:
- develop

permissions:
contents: write

jobs:
bump-version:
if: "!startsWith(github.event.head_commit.message, 'bump:')"
runs-on: ubuntu-latest
name: "Bump version and create changelog with commitizen"
steps:
- name: Check out
uses: actions/checkout@v6
with:
token: ${{ secrets.COMMITIZEN_RELEASE_SECRET }}
fetch-depth: 0
- name: Create bump and changelog
uses: commitizen-tools/commitizen-action@master
with:
github_token: ${{ secrets.COMMITIZEN_RELEASE_SECRET }}
changelog_increment_filename: body.md
prerelease: beta
- name: Release
uses: ncipollo/release-action@v1
with:
tag: v${{ env.REVISION }}
bodyFile: "body.md"
skipIfReleaseExists: true
prerelease: true
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Lint

on:
pull_request:
branches: [ main, dev ]
branches: [ main, develop ]

permissions:
checks: write
Expand Down