Test log #1
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: Commit | |
on: | |
schedule: | |
- cron: '0 0 */4 * *' | |
push: | |
branches: | |
- main | |
jobs: | |
commit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Display current directory | |
run: pwd | |
- name: List files | |
run: ls -la | |
- name: Make a change | |
run: | | |
echo "Update on $(date)" > update_log.txt | |
- name: Display file content | |
run: cat update_log.txt | |
- name: Commit changes | |
run: | | |
git config --global user.name 'Iryna-Vyshniak' | |
git config --global user.email 'iryna.vyshniak@gmail.com' | |
git add update_log.txt | |
git commit -m "Update log" | |
git push | |
- name: Show Git log | |
run: git log -1 |