From b1533c09c93cd1f5fa66dcc72ba47ef512b847a6 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sat, 24 Jan 2026 11:39:38 +0100 Subject: [PATCH] Shortened action url --- .gitea/workflows/pull_request.yaml | 28 ---------------------------- .gitea/workflows/push.yaml | 2 +- 2 files changed, 1 insertion(+), 29 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index 249e132..2e87d4d 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -4,34 +4,6 @@ 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 diff --git a/.gitea/workflows/push.yaml b/.gitea/workflows/push.yaml index c4cd9b5..e4798e9 100644 --- a/.gitea/workflows/push.yaml +++ b/.gitea/workflows/push.yaml @@ -38,7 +38,7 @@ jobs: ref: ${{ gitea.ref_name }} - name: Increment version number - uses: https://github.com/stikkyapp/update-pubspec-version@v2 + uses: stikkyapp/update-pubspec-version@v2 with: strategy: 'patch' path: './pubspec.yaml'