Daily Reminder #32
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: Daily Reminder | |
on: | |
schedule: | |
- cron: "50 04 * * *" | |
workflow_dispatch: | |
jobs: | |
notification: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Commit and push changes | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Hoàng Anh Tiến" | |
git add -A | |
git commit -m "commit daily" | |
git push |