FIX: Addes ci skip stamement to not cancel the workflow during the version change

This commit is contained in:
2025-09-03 19:50:57 +02:00
parent 5e70da801f
commit 7bb7bfc3a5
2 changed files with 3 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ on:
push:
branches: [ main, test ]
paths: [ 'zabbix-apk-builder/**' ]
if: "!contains(gitea.event.head_commit.message, '[ci skip]')"
# Scheduled check for new versions (daily at 6 AM UTC)
schedule:
@@ -88,7 +89,7 @@ jobs:
git config --local user.email "action@gitea.com"
git config --local user.name "Gitea Action"
git add zabbix-apk-builder/APKBUILD
git commit -m "CHANGE: Update Zabbix to version $LATEST_VERSION" || exit 0
git commit -m "CHANGE: Update Zabbix to version $LATEST_VERSION [ci skip]" || exit 0
git push
build-packages:

View File

@@ -1,7 +1,7 @@
# Contributor: Maksym Buz <maksym.buz@zabbix.com>
# Maintainer: Maksym Buz <maksym.buz@zabbix.com>
pkgname=zabbix
pkgver=7.4.2
pkgver=7.4.1
pkgrel=0
pkgdesc="Enterprise-class open source distributed monitoring solution"
url="https://www.zabbix.com/"