We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5707060 commit d677e5bCopy full SHA for d677e5b
1 file changed
.github/workflows/hourly-commit.yml
@@ -50,10 +50,12 @@ jobs:
50
51
- name: Commit and push
52
run: |
53
+ git config --global user.name "HOLYKEYZ"
54
+ git config --global user.email "ayandajoseph390@gmail.com"
55
+
56
+ # Always update activity timestamp - forces a commit
57
+ echo "Last sync: $(date -u '+%Y-%m-%d %H:%M:%S UTC')" > .github/activity_tracker.txt
58
59
git add -A
- if git diff --staged --quiet; then
- echo "No changes to commit"
- else
- git commit -m "chore: $(date -u '+%Y-%m-%d %H:%M') update"
- git push
- fi
60
+ git commit -m "chore: $(date -u '+%Y-%m-%d %H:%M') sync"
61
+ git push
0 commit comments