Skip to content

Daily commit

Daily commit #596

Workflow file for this run

name: Daily commit
on:
schedule:
- cron: "0 1 * * *"
jobs:
commit:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Make commit
run: |
git config --global user.name "Rocky-04"
git config --global user.email "[email protected]"
git commit --allow-empty -m "Daily commit $(date +'%Y-%m-%d')"
git push origin HEAD:master