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