We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 548b5cc commit fd0ef0cCopy full SHA for fd0ef0c
.github/workflows/blog-post-workflow.yml
@@ -0,0 +1,19 @@
1
+name: Latest blog post workflow
2
+on:
3
+ schedule: # Run workflow automatically
4
+ - cron: '0 * * * *' # Runs every hour, on the hour
5
+ workflow_dispatch: # Run workflow manually (without waiting for the cron to be called), through the GitHub Actions Workflow page directly
6
+permissions:
7
+ contents: write # To write the generated contents to the readme
8
+
9
+jobs:
10
+ update-readme-with-blog:
11
+ name: Update this repo's README with latest blog posts
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v4
16
+ - name: Pull in dev.to posts
17
+ uses: gautamkrishnar/blog-post-workflow@v1
18
+ with:
19
+ feed_list: "https://dev.to/feed/coderatul"
0 commit comments