67 lines
2.2 KiB
YAML
67 lines
2.2 KiB
YAML
# Copyright (C) 2026 Moko Consulting <hello@mokoconsulting.tech>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
#
|
|
# FILE INFORMATION
|
|
# DEFGROUP: Gitea.Workflow
|
|
# INGROUP: mokocli.Release
|
|
# REPO: https://git.mokoconsulting.tech/MokoConsulting/mokocli
|
|
# PATH: /.mokogitea/workflows/auto-bump.yml
|
|
# VERSION: 09.02.00
|
|
# BRIEF: Auto patch-bump version on every push to dev (skips merge commits)
|
|
|
|
name: "Universal: Auto Version Bump"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- dev
|
|
- rc
|
|
- 'feature/**'
|
|
- 'patch/**'
|
|
|
|
env:
|
|
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
|
|
GITEA_URL: ${{ vars.GITEA_URL || 'https://git.mokoconsulting.tech' }}
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
bump:
|
|
name: Version Bump
|
|
runs-on: release
|
|
if: >-
|
|
!contains(github.event.head_commit.message, '[skip ci]') &&
|
|
!contains(github.event.head_commit.message, '[skip bump]') &&
|
|
!startsWith(github.event.head_commit.message, 'Merge pull request')
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
with:
|
|
token: ${{ secrets.MOKOGITEA_TOKEN }}
|
|
fetch-depth: 1
|
|
|
|
- name: Setup mokocli tools
|
|
run: |
|
|
if ! command -v composer &> /dev/null; then
|
|
sudo apt-get update -qq && sudo apt-get install -y -qq php-cli php-mbstring php-xml php-zip php-curl composer >/dev/null 2>&1
|
|
fi
|
|
if [ -d "/opt/mokocli/cli" ]; then
|
|
echo "MOKO_CLI=/opt/mokocli/cli" >> "$GITHUB_ENV"
|
|
else
|
|
git clone --depth 1 --branch main --quiet \
|
|
"https://x-access-token:${{ secrets.MOKOGITEA_TOKEN }}@git.mokoconsulting.tech/MokoConsulting/mokocli.git" \
|
|
/tmp/mokocli
|
|
cd /tmp/mokocli && composer install --no-dev --no-interaction --quiet
|
|
echo "MOKO_CLI=/tmp/mokocli/cli" >> "$GITHUB_ENV"
|
|
fi
|
|
|
|
- name: Bump version
|
|
run: |
|
|
php ${MOKO_CLI}/version_auto_bump.php \
|
|
--path . --branch "${GITHUB_REF_NAME}" \
|
|
--token "${{ secrets.MOKOGITEA_TOKEN }}" \
|
|
--repo-url "https://x-access-token:${{ secrets.MOKOGITEA_TOKEN }}@git.mokoconsulting.tech/${{ github.repository }}.git"
|