6 Commits

Author SHA1 Message Date
1bce8fbfce fix analytics 2025-08-11 09:19:51 +00:00
7279e5e043 fix url 2025-08-11 09:09:13 +00:00
e1ca847868 tune workflow 2025-08-11 09:04:08 +00:00
f06e62aea3 resolve conflicts 2025-08-11 08:47:19 +00:00
03072ec4c0 add PR 2025-08-11 08:44:25 +00:00
f81ba23d8a change workflow 2025-08-11 08:30:46 +00:00

View File

@ -49,14 +49,14 @@ jobs:
--limit "10" --limit "10"
- name: Commit and push results - name: Commit and push results
id: commit_step
run: | run: |
git config --global user.name "gitea-actions[bot]" git config --global user.name "gitea-actions[bot]"
git config --global user.email "actions@users.noreply.local" git config --global user.email "actions@users.noreply.local"
git checkout -B analytics-update git checkout -B analytics-update
git add analytics/ git add analytics/
if git diff --cached --quiet; then if git diff --cached --quiet; then
echo "No changes to commit"
else else
git commit -m "chore: update analytics data [skip ci]" git commit -m "chore: update analytics data"
git push origin analytics-update --force git push origin analytics-update --force
fi fi