From 9aaf962846a2fd761ac9308144d82c06f6619df0 Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Fri, 22 May 2026 15:43:30 +0200 Subject: [PATCH] test gen l10n --- .gitea/workflows/pull_request.yaml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index fdfa718..e4ea9ea 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -142,21 +142,22 @@ jobs: env: GITEA_TOKEN: ${{ secrets.BOT_TOKEN }} run: | - # git fetch origin ${{ gitea.ref_name }} + git fetch origin ${{ gitea.head_ref }} - # git checkout ${{ gitea.ref_name }} git checkout ${{ gitea.head_ref }} if [ -n "$(git status --porcelain lib test)" ]; then git config --global user.name "Gitea Actions [bot]" git config --global user.email "actions@yannick-weigert.de" git config pull.rebase false - # git pull origin ${{ gitea.ref_name }} git pull origin ${{ gitea.head_ref }} git add lib/l10n git commit -m "Generated localizations [skip ci]" - # git push origin HEAD:${{ gitea.ref_name }} git push origin HEAD:${{ gitea.head_ref }} else echo "No changes to commit" - fi \ No newline at end of file + fi + # git fetch origin ${{ gitea.ref_name }} + # git checkout ${{ gitea.ref_name }} + # git pull origin ${{ gitea.ref_name }} + # git push origin HEAD:${{ gitea.ref_name }}