From ed6d4fa425f2f13aaad1a32c90a0f29b884a1788 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 24 Jan 2026 11:38:31 +0100 Subject: [PATCH] Tested new update version --- .gitea/workflows/pull_request.yaml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 1304a7b..249e132 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -4,8 +4,37 @@ on: pull_request: jobs: + update_version: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + token: ${{ secrets.BOT_TOKEN }} + ref: ${{ gitea.head_ref }} + + - name: Increment version number + uses: stikkyapp/update-pubspec-version@v2 + with: + strategy: 'patch' + path: './pubspec.yaml' + + + - name: Commit version update + env: + GITEA_TOKEN: ${{ secrets.BOT_TOKEN }} + run: | + git config --global user.name "Gitea Actions [bot]" + git config --global user.email "actions@yannick-weigert.de" + git add pubspec.yaml + git commit -m "Updated version number [skip ci]" + git push origin HEAD:${{ gitea.head_ref }} + + lint: runs-on: ubuntu-latest + if: false steps: - name: Checkout code uses: actions/checkout@v4 @@ -24,6 +53,7 @@ jobs: run: flutter analyze lib test test: + if: false runs-on: ubuntu-latest steps: - name: Checkout code