pr_workflow #42

Closed
tischrei wants to merge 6 commits from pr_workflow into main

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