modified: README.md #48
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: "Update README with most recent blog post" | |
on: push | |
permissions: | |
contents: write | |
jobs: | |
recent_post_job: | |
runs-on: ubuntu-latest | |
name: Recent Post | |
steps: | |
- name: Checkout repo | |
uses: "actions/checkout@v4" | |
- name: Recent post action | |
id: recent-post | |
uses: "it176131/it176131.github.io/.github/actions/recent-posts@v1" | |
- name: Commit README | |
run: | | |
git config user.email [email protected] | |
git config user.name github-actions | |
git pull | |
git add . | |
git commit -m "Synced and updated with most recent it176131.github.io blog post" | |
git push |