From c43fa028f5cbfe97b78e372a6bd96e1a35a37fed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=88=9A=28noham=29=C2=B2?= <100566912+NohamR@users.noreply.github.com> Date: Thu, 1 Jan 2026 18:57:59 +0100 Subject: [PATCH] Add workflow to update README with latest blog posts --- .github/workflow/blog-post-workflow.yml | 19 +++++++++++++++++++ README.md | 4 +++- 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 .github/workflow/blog-post-workflow.yml diff --git a/.github/workflow/blog-post-workflow.yml b/.github/workflow/blog-post-workflow.yml new file mode 100644 index 0000000..d225d1d --- /dev/null +++ b/.github/workflow/blog-post-workflow.yml @@ -0,0 +1,19 @@ +name: Latest blog post workflow +on: + schedule: # Run workflow automatically + - cron: '0 1 * * *' # Runs daily at 01:00 + workflow_dispatch: # Run workflow manually +permissions: + contents: write + +jobs: + update-readme-with-blog: + name: Update this repo's README with latest blog posts + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Pull in codu posts + uses: gautamkrishnar/blog-post-workflow@v1 + with: + feed_list: "https://noh.am/en/index.xml" \ No newline at end of file diff --git a/README.md b/README.md index 2a9c93b..85c1463 100644 --- a/README.md +++ b/README.md @@ -3,4 +3,6 @@ languages graph -### +## Latest Blog Posts + + \ No newline at end of file