Skip to content

Update File

Update File #432

Workflow file for this run

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