From 9848825516ed355e1e3005a1080ecd9dd9c30c56 Mon Sep 17 00:00:00 2001 From: tischrei Date: Mon, 11 Aug 2025 08:31:55 +0000 Subject: [PATCH] change workflow (#41) Reviewed-on: https://gitea.eco.tsi-dev.otc-service.com/infra/otc-metadata-rework/pulls/41 Reviewed-by: Gode, Sebastian Co-authored-by: tischrei Co-committed-by: tischrei --- .gitea/workflows/create-weekly-analytics-stats.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/create-weekly-analytics-stats.yaml b/.gitea/workflows/create-weekly-analytics-stats.yaml index 5748018..c6f87bd 100644 --- a/.gitea/workflows/create-weekly-analytics-stats.yaml +++ b/.gitea/workflows/create-weekly-analytics-stats.yaml @@ -52,10 +52,11 @@ jobs: run: | git config --global user.name "gitea-actions[bot]" git config --global user.email "actions@users.noreply.local" + git checkout -B analytics-update git add analytics/ if git diff --cached --quiet; then echo "No changes to commit" else git commit -m "chore: update analytics data [skip ci]" - git push + git push origin analytics-update --force fi