Update File #436
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update File | |
on: | |
schedule: | |
- cron: "*/15 * * * *" | |
workflow_dispatch: | |
jobs: | |
update-file: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Update File | |
run: | | |
echo $(date '+%Y-%m-%d %H:%M:%S') > Update | |
- name: Commit and push changes | |
run: | | |
git config --global user.name "CS2 Skin Changer 2025" | |
git config --global user.email "cs2skin@github.com" | |
git add Update | |
git commit -m "Update file" | |
git push |