Skip to content

modified: .github/actions/recent-posts/main.py #44

modified: .github/actions/recent-posts/main.py

modified: .github/actions/recent-posts/main.py #44

Workflow file for this run

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