8000 Daily commit: Thu May 30 00:43:27 UTC 2024 · tkfka1/Weeding@72c2395 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
8000

Daily Commit

Daily Commit #18

Workflow file for this run

name: Daily Commit
on:
schedule:
- cron: '0 0 * * *' # 매일 자정에 실행
workflow_dispatch: # 수동 실행을 위한 트리거 추가
jobs:
commit:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Update file
run: |
echo "Last commit at $(date)" > update.txt
- name: Commit changes
run: |
git config --global user.name 'tkfka1'
git config --global user.email 'tkfka1@korea.com'
git add update.txt
git commit -m "Daily commit: $(date)"
git push
env:
REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0