Skip to content

Commit

Permalink
Test log
Browse files Browse the repository at this point in the history
  • Loading branch information
Iryna-Vyshniak committed Jul 14, 2024
1 parent a44338a commit 26ff847
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/commit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
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 '[email protected]'
git add update_log.txt
git commit -m "Update log"
git push
- name: Show Git log
run: git log -1
Empty file added update_log.txt
Empty file.

0 comments on commit 26ff847

Please sign in to comment.