From 5d9e1430278663523c8698c92b48919585d8f755 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 17 Jan 2026 20:06:56 +0100 Subject: [PATCH] Tried version update --- .gitea/workflows/pull_request.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 17ff034..c94a093 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -125,3 +125,17 @@ jobs: strategy: 'patch' bump-build: false path: './pubspec.yaml' + + - name: Format code + run: | + git fetch origin ${{ gitea.head_ref }} + git checkout ${{ gitea.head_ref }} + + git config --global user.name "Gitea Actions [bot]" + git config --global user.email "actions@gitea.com" + git add lib test + git commit -m "Updated version number" + git push + # Alt: git push https://oauth2:${{ secrets.BOT_TOKEN }}@git.yannick-weigert.de/liquid-development/game-tracker.git HEAD:${{ gitea.head_ref }} + +