Home

Awesome

Blog post workflow Build and test

<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->

All Contributors

<!-- ALL-CONTRIBUTORS-BADGE:END -->

preview

How to use

  1. Star this repo 😉

  2. Go to your repository

  3. Add the following section to your README.md file, you can give whatever title you want. Just make sure that you use <!-- BLOG-POST-LIST:START --><!-- BLOG-POST-LIST:END --> in your readme. The workflow will replace this comment with the actual blog post list:

    # Blog posts
    <!-- BLOG-POST-LIST:START -->
    <!-- BLOG-POST-LIST:END -->
    
  4. Create a folder named .github and create a workflows folder inside it, if it doesn't exist.

  5. Create a new file named blog-post-workflow.yml with the following contents inside the workflows folder:

    name: Latest blog post workflow
    on:
      schedule: # Run workflow automatically
        - cron: '0 * * * *' # Runs every hour, on the hour
      workflow_dispatch: # Run workflow manually (without waiting for the cron to be called), through the GitHub Actions Workflow page directly
    permissions:
      contents: write # To write the generated contents to the readme
    
    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@v4
          - name: Pull in dev.to posts
            uses: gautamkrishnar/blog-post-workflow@v1
            with:
              feed_list: "https://dev.to/feed/gautamkrishnar,https://www.gautamkrishnar.com/feed/"
    
  6. Replace the above URL list with your own RSS feed URLs. See popular-sources for a list of common RSS feed urls. Commit the changes.

  7. Go to repository settings, Click on Actions > General. Update the "Workflow permissions" to "Read and write permissions". Click on save.

    Workflow permissions

  8. Wait for it to run automatically, or you can also trigger it manually to see the result instantly. To trigger the workflow manually, please follow the steps in the video.

Options

This workflow has additional options that you can use to customize it for your use case. The following are the list of options available:

OptionDefault ValueDescriptionRequired
feed_list""Comma-separated list of RSS feed urls, eg: https://example1.com,https://example2.comYes
max_post_count5Maximum number of posts you want to show on your readme, all feeds combinedNo
readme_path./README.mdComma separated paths of the readme files you want to updateNo
gh_tokenyour GitHub token with repo scopeUse this to configure the token of the user that commits the workflow result to GitHubNo
comment_tag_nameBLOG-POST-LISTAllows you to override the default comment tag name (<!-- BLOG-POST-LIST:START --><!-- BLOG-POST-LIST:END -->), if you want to show multiple instances of the action on the same repo, see advanced usage for more infoNo
disable_sortfalseDisables the sorting of the list based on publish dateNo
feed_names""Comma-separated list of RSS feed names, this is intended to be used with template option. eg: Blog,Dev.toNo
templatedefaultAllows you to change the structure of the posts list by using different variables. By default this workflow uses markdown list format to render the posts, you can override this behavior using this option. Eg: [$title]($url) will give you a space-separated list of posts.<br/><br/>Supported variables <ul><li>$title: Title of the post</li><li>$url: URL of the post</li><li>$description: Description of the post</li><li>$newline: Inserts a newline</li><li>$date: Inserts the post date based on the date_format specified</li><li>$randomEmoji: Allow you to use random emojis in the post, pass emojis as the parameter to chose one of it randomly in each post item. Eg: $randomEmoji(💯,🔥,💫,🚀,🌮). See the issue comment for more details</li><li>$emojiKey: You can use this argument to show emojis on each of your post item sequentially in the order you specify. Example: $emojiKey(💯,🔥,💫). See the issue comment for more details</li><li>$counter: You can use this argument to show a serial number on each of your post items.</li><li>$feedName: You can use this argument to show a string that represents your website name, use feed_names argument to specify it for each feed item. Eg: feed_list: "https://dev.to/feed/gautamkrishnar,https://www.gautamkrishnar.com/feed/", feed_names: "Dev.to,Personal Website"</li><li>$categories: You can use this to show a comma separated list of post categories if available. See this issue for more details</li></ul>No
categories_templatedefaultBy default $categories variable in the template is a comma separated string of categories. This option will allow you override it and customize the category item according to your use case. Following are the variables available: <ul><li>$category: Represents individual category item</li></ul> eg: <code>$category</code> will show category list as category1 category2 category3 etcNo
date_formatUTC:ddd mmm dd yyyy h:MM TTAllows you to change the format of the date or time displayed when using the $date in the template option. This uses NPM dateformat library, please read the library documentation for the supported formatsNo
user_agentrss-parserAllows you to customize the user agent used by the RSS feed crawlerNo
accept_headerapplication/rss+xmlAllows you to customize the accept header of the http requestsNo
tag_post_pre_newlinetrue if you are not using template optionAllows you to insert a newline before the closing tag and after the opening tag when using the template option if needed, for better formattingNo
filter_commentsstackoverflow/Comment by $author/,stackexchange/Comment by $author/Comma separated list of platforms you want to enable the comment filter.<br/><br/>Available filters<ul><li>stackoverflow/Comment by $author/: Allows you to filter out the StackOverflow comments. Argument to this filter is optional, it defaults to 'Comment by $author'. If you use any language other than English on StackOverflow, you can use this argument to customize it. See #16 for more info.</li><li>stackexchange/Comment by $author/: Allows you to filter out the StackExchange comments. Argument to this filter follows the same format as stackoverflow filter's argument.</li></ul>No
custom_tags""Allows you to use the custom tags from your feed items in your template. Format: variableName/tagName/,variableName/tagName/. Please see the issue comment for more detailsNo
title_max_length""Allows you to trim the title in the posts list, excess text will be appended with an ellipsis ...No
description_max_length""Allows you to trim the description in the posts list, excess text will be appended with an ellipsis ...No
item_exec""Allows you to execute custom JavaScript code on each post item fetched from the xml to do advanced text manipulation. Please see the issue comment as an exampleNo
commit_messageUpdated with the latest blog postsAllows you to customize the commit messageNo
committer_usernameblog-post-botAllows you to customize the committer usernameNo
committer_emailblog-post-bot@example.comAllows you to customize the committer emailNo
output_onlyfalseSets the generated array as results output variable so that it can be consumed in other actions and parsed via utilities like jq. This will also prevent committing to readme. See #51 for more details about the output format and how to use it. This will also generate a JSON file named /tmp/blog_post_workflow_output.json that you can use to consume the generated data and avoid issues like #110.No
enable_keepalivetrueWorkflow will automatically do a dummy commit to keep the repository active if there is no commit activity for the last 50 days. GitHub will stop running all cron based triggers if the repository is not active for more than 60 days. This flag allows you to disable this feature. See #53 for more details.No
retry_count0Maximum number of times to retry the fetch operation if it fails, See #66 for more details.No
retry_wait_time1Time to wait before each retry operation in seconds.No
disable_html_encodingfalseDisables html encoding of the feed contents.No
disable_item_validationfalseDisables the validation checks for Title, publish date and URL.No
filter_dates""Allows you to filter post items based on date range. <br/><br/>Supported Values <ul><li>daysAgo/N/: Use this value to display only the posts from the last N days. eg: daysAgo/10/ will show only posts from last 10 days.</li><li>currentMonth: Use this value to display the post that are published on current month.</li><li>currentYear: Use this value to display the post that are published on current year.</li></ul> Make sure that you set the max_post_count to a higher value to get rid of max post count filtering, before using the above options.No
rand_seed"username/repository"Provide your own seeding string for the randomness. More info: #152No
remove_duplicatesfalseAllows you to remove duplicate blog posts from multiple sources, if are cross posting. This filters contents based on blog post's title.No
skip_commitfalseAllows you to prevent the workflow from creating a new commit in the repository. Nevertheless of this option, changes to the readme will be made. This is particularly useful if you want to do the commits manually using the git cli or another workflow. One of the important thing to note is that the workflow will still do the keepalive commits, if you want to disable it you can use the enable_keepalive option instead.No
dummy_commit_messagedummy commit to keep the repository active, see https://git.io/Jtm4VDummy commit message, This is when the workflow is doing automated commits to keep the repository activeNo

Advanced usage examples

Click to expand:

<details> <summary> <b>StackOverflow example</b> </summary>

The following configuration allows you to show your latest StackOverflow activity along with your latest blog posts in the GitHub profile or project readme:

  1. Follow the steps mentioned in the how to use section.
  2. Add the following section to your README.md file, you can give whatever title you want. Just make sure that you use <!-- STACKOVERFLOW:START --><!-- STACKOVERFLOW:END --> in your readme. The workflow will replace this comment with the actual StackOverflow activity:
    # StackOverflow Activity
    <!-- STACKOVERFLOW:START -->
    <!-- STACKOVERFLOW:END -->
    
  3. Create stack-overflow-workflow.yml in your workflows folder with the following contents, replace 4214976 with your StackOverflow user ID:
    name: Latest stack overflow activity
    on:
      schedule:
        # Runs every 5 minutes
        - cron: '*/5 * * * *'
      workflow_dispatch:
    permissions:
      contents: write
      
    jobs:
      update-readme-with-stack-overflow:
        name: Update this repo's README with latest activity from StackOverflow
        runs-on: ubuntu-latest
        steps:
          - uses: actions/checkout@v4
          - uses: gautamkrishnar/blog-post-workflow@v1
            with:
              comment_tag_name: "STACKOVERFLOW"
              commit_message: "Updated readme with the latest stackOverflow data"
              feed_list: "https://stackoverflow.com/feeds/user/4214976"
    
See the result!

advanced

</details> <details> <summary><b>Blog post table</b></summary>
workflow.yml
name: Latest stack oveflow activity
on:
  workflow_dispatch:
  schedule:
    - cron:  '0 * * * *'
permissions:
      contents: write
jobs:
  update-readme-with-blog:
    name: Update this repo's README with latest activity from StackOverflow
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: gautamkrishnar/blog-post-workflow@v1
        with:
          comment_tag_name: "STACKOVERFLOW"
          feed_list: "https://stackoverflow.com/feeds/user/4214976"
          template: "<tr><td>$title</td><td>$url</td></tr>"
Readme.md
### Latest StackOveflow activity of [@gautamkrishnar](https://github.com/gautamkrishnar)
<table>
  <tr><th>Title</th><th>Link</th></tr>
  <!-- STACKOVERFLOW:START --><!-- STACKOVERFLOW:END -->
</table>

Preview: https://github.com/gkr-bot/gkr-bot#latest-stackoveflow-activity-of-gautamkrishnar

Results

image

</details> <details> <summary><b>Youtube videos table</b></summary>
workflow.yml
name: Latest YouTube Videos
on:
  schedule:
    # Runs every hour, on the hour
    - cron: "0 * * * *"
  workflow_dispatch:
permissions:
      contents: write

jobs:
  update-readme-with-youtube:
    name: Update this repo's README with latest videos from YouTube
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: gautamkrishnar/blog-post-workflow@master
        with:
          feed_list: "https://www.youtube.com/feeds/videos.xml?channel_id=UCtvnB6R__6vdyjUEbDgAWHw"
          custom_tags: "channelId/yt:channelId/,videoId/yt:videoId/"
          date_format: "mmm d, yyyy"
          template: '<table><tr><td><a href="$url"><img width="140px" src="http://img.youtube.com/vi/$videoId/maxresdefault.jpg"></a></td>$newline<td><a href="$url">$title</a><br/>$date</td></tr></table>$newline'
          committer_email: "alwinjohn231@gmail.com"

Preview: https://github.com/Dexters-Hub/Dexters-Hub

Results

image

</details> <details> <summary><b>Latest Podcast Episode from Anchor</b></summary>
workflow.yml
name: Latest RadioGeek (Anchor)
on:
  schedule:
    # Runs “At 00:00 on Friday.”
    - cron: '0 0 * * FRI'
  workflow_dispatch:

jobs:
  update-readme-with-anchor:
    name: Update this repo's README with latest RadioGeek podcast feed from Anchor
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: gautamkrishnar/blog-post-workflow@master
        with:
          comment_tag_name: "RadioGeek-Anchor-feed"
          feed_list: "https://anchor.fm/s/6048890/podcast/rss"
          max_post_count: 1000
          commit_message: "🔥Update with lastest RadioGeek feed"
          committer_username: "🤖RadioGeek-Bot"
          committer_email: "<>"
          date_format: 'UTC: yyyy-mm-dd'
          template: "$newline #### - [$title]($url) $newline <details><summary>توضیحات</summary> $description </details> $newline <hr /> $newline"
          # Regex for remove HTML TAG:    /(<([^>]+)>)/ig
          item_exec: "post.description = post.description.replace('','')"
          disable_html_encoding: true

by : Mahdi Qiamast

Results

01 02

</details> <details> <summary> <b>Update an index.html file (instead of README.md) with a list from blogspot</b> </summary>

First, create an index.html file in your github repo and insert the tags <!-- BLOG-POST-LIST:START --> <!-- BLOG-POST-LIST:END --> in the file where you want the update to take place. Use appropriate html wrappers outside the tags so that the inserted list is rendered properly (see results below).

workflow.yml

Then in the repo where you want to update the index.html, follow the steps about github actions mentioned above, and create the blog-post-workflow.yml.

name: Latest blog post workflow
on:
  schedule:
    # Runs every hour, on the hour
    - cron: "0 * * * *"
  workflow_dispatch:
permissions:
      contents: write

jobs:
  update-readme-with-youtube:
    name: Update this repo's index.html with latest blog titles from blogspot
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: gautamkrishnar/blog-post-workflow@v1
        with:
          readme_path: 'index.html'
          feed_list: "http://blog_name.blogspot.com/feeds/posts/default?alt=rss"
          template: '<li><a href="$url">$title</a></li>$newline'
          committer_email: "your_email@example.com"

by Mukto Akash

Results

HTML Preview

</details>

Popular Sources

<details> <summary>Some popular blogging platforms and their RSS feed URLs (Click to expand)</summary>
NameFeed URLCommentsExample
Dev.tohttps://dev.to/feed/usernameReplace username with your own usernamehttps://dev.to/feed/gautamkrishnar
Wordpresshttps://www.example.com/feed/Replace with your own blog urlhttps://www.gautamkrishnar.com/feed/
Mediumhttps://medium.com/feed/@usernameReplace username with your Medium usernamehttps://medium.com/feed/@khaosdoctor
Medium (Sub Domain)https://username.medium.com/feedReplace username with your Medium usernamehttps://timsneath.medium.com/feed
Stackoverflowhttps://stackoverflow.com/feeds/user/useridReplace with your StackOverflow UserIdhttps://stackoverflow.com/feeds/user/5283532
StackExchangehttps://subdomain.stackexchange.com/feeds/user/useridReplace with your StackExchange UserId and sub-domainhttps://devops.stackexchange.com/feeds/user/15
Ghosthttps://www.example.com/rss/Replace with your own blog urlhttps://blog.codinghorror.com/rss/
Drupalhttps://www.example.com/rss.xmlReplace with your own blog urlhttps://www.arsenal.com/rss.xml
Hugohttps://BASE_URL/post/index.xmlReplace BASE_URL(doc) with your blog url. Refer to the official Hugo or your theme documentation for more infohttps://davidaparicio.gitlab.io/website/fr/post/index.xml
Youtube Playlistshttps://www.youtube.com/feeds/videos.xml?playlist_id=playlistIdReplace playlistId with your own Youtube playlist idhttps://www.youtube.com/feeds/videos.xml?playlist_id=PLJNqgDLpd5E69Kc664st4j7727sbzyx0X
Youtube Channel Video listhttps://www.youtube.com/feeds/videos.xml?channel_id=channelIdReplace channelId with your own Youtube channel idhttps://www.youtube.com/feeds/videos.xml?channel_id=UCDCHcqyeQgJ-jVSd6VJkbCw
Anchor.fm Podcastshttps://anchor.fm/s/podcastId/podcast/rssYou can get the rss feed url of a podcast by following these instructionshttps://anchor.fm/s/1e784a38/podcast/rss
Hashnodehttps://@username.hashnode.dev/rss.xmlReplace @username with your Hashnode usernamehttps://polilluminato.hashnode.dev/rss.xml
Google Podcastshttps://podcasts.google.com/feed/channelIdReplace channelId with your Google podcast channel Idhttps://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zb3VuZGNsb3VkLmNvbS91c2Vycy9zb3VuZGNsb3VkOnVzZXJzOjYyOTIxMTkwL3NvdW5kcy5yc3M=
Reddithttp://www.reddit.com/r/topic/.rssYou can create an RSS feed by adding '.rss' to the end of an existing Reddit URL. Replace topic with SubReddit topic that interest you or localized to you.http://www.reddit.com/r/news/.rss
Analytics India Magazinehttps://analyticsindiamag.com/author/author_name/feed/Replace author_name with your namehttps://analyticsindiamag.com/author/kaustubhgupta1828gmail-com/feed/
Feedburnerhttps://feeds.feedburner.com/feed_addressReplace feed_address with your Feedburner feed addresshttps://feeds.feedburner.com/darkwood-fr/blog
Tumblrhttps://blog_name.tumblr.com/rss or https://example.com/rssYou can create an RSS feed by adding '/rss' to your main blog page or to your own domain if it is configured. Replace blog_name with your blog namehttps://goggledoddle.tumblr.com/rss
Bloggerhttps://blog_name.blogspot.com/feeds/posts/defaultReplace blog_name with your blog subdomainhttps://singlebucks.blogspot.com/feeds/posts/default
Veloghttps://v2.velog.io/rss/useridReplace userid with your user id (without the @ symbol)https://v2.velog.io/rss/minnczi
Shouts.devhttps://shouts.dev/feed/usernameReplace username with your own usernamehttps://shouts.dev/feed/obydul
Gisthttps://gist.github.com/username.atomReplace username with your own usernamehttps://gist.github.com/banyudu.atom
Tistoryhttps://blog_name.tistory.com/rssReplace blog_name with your blog subdomainhttps://helicopter55.tistory.com/rss
NAVERhttps://rss.blog.naver.com/blog_id.xmlReplace blog_id with your NAVER blog idhttps://rss.blog.naver.com/bnbong.xml
Substackhttps://user.substack.com/feed/Replace user with your substack usernamehttps://nathanielchitnis/substack.com/feed/
Daily Dev Bookmarkshttps://api.daily.dev/rss/b/feed/feed_idReplace feed_id with your feed idhttps://api.daily.dev/rss/b/3318cf63-8b45-4d1c-9cf0-ee79196d59a8
rss.apphttps://api.daily.dev/rss/b/feed/custom_feed_idYou can use rss.app to generate RSS feeds from a lots of supported sources including Instagram, x etc. See a list of supported sources herehttps://api.daily.dev/rss/b/3318cf63-8b45-4d1c-9cf0-ee79196d59a8
</details>

Examples

FAQs and Common issues

Demo video

Please see the video by @codeSTACKr.

Contributing

Please see CONTRIBUTING.md for getting started with the contribution.

Make sure that you follow CODE_OF_CONDUCT.md while contributing and engaging in the discussions.

When contributing, please first discuss the change you wish to make via an issue on this repository before making the actual change.

ToDo

Bugs

If you are experiencing any bugs, don’t forget to open a new issue.

Thanks to

<a href="https://www.jetbrains.com/?from=SOCLI" target="_blank"> <img alt="jetbrains" src="https://user-images.githubusercontent.com/8397274/72133518-a6d8c300-33a7-11ea-8979-659b248ca1a2.png" width="100"> </a> <a href="https://tutanota.com" target="_blank"> <img alt="tutanota.com" src="https://user-images.githubusercontent.com/8397274/265096374-09faa63f-6847-4133-b409-5f7dc9ed1d59.png" width="300"> </a>

Contributors ✨

Thanks goes to these wonderful people (emoji key):

<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --> <!-- prettier-ignore-start --> <!-- markdownlint-disable --> <table> <tbody> <tr> <td align="center" valign="top" width="14.28%"><a href="https://github.com/khaosdoctor"><img src="https://avatars.githubusercontent.com/u/3200560?v=4?s=100" width="100px;" alt="Lucas Santos"/><br /><sub><b>Lucas Santos</b></sub></a><br /><a href="https://github.com/gautamkrishnar/blog-post-workflow/commits?author=khaosdoctor" title="Code">💻</a> <a href="https://github.com/gautamkrishnar/blog-post-workflow/commits?author=khaosdoctor" title="Documentation">📖</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/MichaelCurrin"><img src="https://avatars.githubusercontent.com/u/18750745?v=4?s=100" width="100px;" alt="Michael Currin"/><br /><sub><b>Michael Currin</b></sub></a><br /><a href="https://github.com/gautamkrishnar/blog-post-workflow/commits?author=MichaelCurrin" title="Documentation">📖</a></td> <td align="center" valign="top" width="14.28%"><a href="https://curious-yu.github.io/"><img src="https://avatars.githubusercontent.com/u/22830590?v=4?s=100" width="100px;" alt="WY"/><br /><sub><b>WY</b></sub></a><br /><a href="https://github.com/gautamkrishnar/blog-post-workflow/commits?author=Curious-Yu" title="Documentation">📖</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/hexxdump"><img src="https://avatars.githubusercontent.com/u/631835?v=4?s=100" width="100px;" alt="Hussaina Begum"/><br /><sub><b>Hussaina Begum</b></sub></a><br /><a href="https://github.com/gautamkrishnar/blog-post-workflow/commits?author=hexxdump" title="Documentation">📖</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/riginoommen"><img src="https://avatars.githubusercontent.com/u/3840244?v=4?s=100" width="100px;" alt="Rigin Oommen"/><br /><sub><b>Rigin Oommen</b></sub></a><br /><a href="https://github.com/gautamkrishnar/blog-post-workflow/commits?author=riginoommen" title="Documentation">📖</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/polilluminato"><img src="https://avatars.githubusercontent.com/u/202140?v=4?s=100" width="100px;" alt="Alberto Bonacina"/><br /><sub><b>Alberto Bonacina</b></sub></a><br /><a href="https://github.com/gautamkrishnar/blog-post-workflow/commits?author=polilluminato" title="Documentation">📖</a></td> <td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/ambroise-dhenain/"><img src="https://avatars.githubusercontent.com/u/3807458?v=4?s=100" width="100px;" alt="Vadorequest"/><br /><sub><b>Vadorequest</b></sub></a><br /><a href="https://github.com/gautamkrishnar/blog-post-workflow/commits?author=Vadorequest" title="Documentation">📖</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://freshidea.com/jonah"><img src="https://avatars.githubusercontent.com/u/20955511?v=4?s=100" width="100px;" alt="Jonah Lawrence"/><br /><sub><b>Jonah Lawrence</b></sub></a><br /><a href="https://github.com/gautamkrishnar/blog-post-workflow/commits?author=DenverCoder1" title="Code">💻</a></td> <td align="center" valign="top" width="14.28%"><a href="https://denvercoder.com/"><img src="https://avatars.githubusercontent.com/u/22165183?v=4?s=100" width="100px;" alt="Tim Myers"/><br /><sub><b>Tim Myers</b></sub></a><br /><a href="https://github.com/gautamkrishnar/blog-post-workflow/commits?author=denvercoder" title="Documentation">📖</a></td> <td align="center" valign="top" width="14.28%"><a href="https://linktr.ee/kaustubhgupta"><img src="https://avatars.githubusercontent.com/u/43691873?v=4?s=100" width="100px;" alt="Kaustubh Gupta"/><br /><sub><b>Kaustubh Gupta</b></sub></a><br /><a href="https://github.com/gautamkrishnar/blog-post-workflow/commits?author=kaustubhgupta" title="Documentation">📖</a></td> <td align="center" valign="top" width="14.28%"><a href="https://darkwood.com/"><img src="https://avatars.githubusercontent.com/u/1254025?v=4?s=100" width="100px;" alt="Mathieu Ledru"/><br /><sub><b>Mathieu Ledru</b></sub></a><br /><a href="https://github.com/gautamkrishnar/blog-post-workflow/commits?author=matyo91" title="Documentation">📖</a></td> <td align="center" valign="top" width="14.28%"><a href="https://adityadees.com/"><img src="https://avatars.githubusercontent.com/u/37553901?v=4?s=100" width="100px;" alt="Aditya Dharmawan Saputra"/><br /><sub><b>Aditya Dharmawan Saputra</b></sub></a><br /><a href="https://github.com/gautamkrishnar/blog-post-workflow/commits?author=adityadees" title="Documentation">📖</a></td> <td align="center" valign="top" width="14.28%"><a href="https://velog.io/@minnczi"><img src="https://avatars.githubusercontent.com/u/32619843?v=4?s=100" width="100px;" alt="Minji"/><br /><sub><b>Minji</b></sub></a><br /><a href="https://github.com/gautamkrishnar/blog-post-workflow/commits?author=minnczi" title="Documentation">📖</a></td> <td align="center" valign="top" width="14.28%"><a href="https://dhanushka.netlify.com/"><img src="https://avatars.githubusercontent.com/u/7068605?v=4?s=100" width="100px;" alt="Dhanushka Madushan"/><br /><sub><b>Dhanushka Madushan</b></sub></a><br /><a href="https://github.com/gautamkrishnar/blog-post-workflow/commits?author=madushadhanushka" title="Documentation">📖</a></td> </tr> <tr> <td align="center" valign="top" width="14.28%"><a href="https://curtiscode.dev/"><img src="https://avatars.githubusercontent.com/u/15653985?v=4?s=100" width="100px;" alt="Curtis Timson"/><br /><sub><b>Curtis Timson</b></sub></a><br /><a href="https://github.com/gautamkrishnar/blog-post-workflow/commits?author=curtiscde" title="Code">💻</a></td> <td align="center" valign="top" width="14.28%"><a href="https://bio.link/obydul"><img src="https://avatars.githubusercontent.com/u/13184472?v=4?s=100" width="100px;" alt="Md Obydullah"/><br /><sub><b>Md Obydullah</b></sub></a><br /><a href="https://github.com/gautamkrishnar/blog-post-workflow/commits?author=mdobydullah" title="Documentation">📖</a></td> <td align="center" valign="top" width="14.28%"><a href="http://david.aparicio.eu/"><img src="https://avatars.githubusercontent.com/u/809982?v=4?s=100" width="100px;" alt="David Aparicio"/><br /><sub><b>David Aparicio</b></sub></a><br /><a href="https://github.com/gautamkrishnar/blog-post-workflow/commits?author=davidaparicio" title="Documentation">📖</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/banyudu"><img src="https://avatars.githubusercontent.com/u/2416493?v=4?s=100" width="100px;" alt="Yudu"/><br /><sub><b>Yudu</b></sub></a><br /><a href="https://github.com/gautamkrishnar/blog-post-workflow/commits?author=banyudu" title="Documentation">📖</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/TLOWAC"><img src="https://avatars.githubusercontent.com/u/58043975?v=4?s=100" width="100px;" alt="Changhun Lee"/><br /><sub><b>Changhun Lee</b></sub></a><br /><a href="https://github.com/gautamkrishnar/blog-post-workflow/commits?author=TLOWAC" title="Documentation">📖</a></td> <td align="center" valign="top" width="14.28%"><a href="https://cv.adrianpaniagua.es/"><img src="https://avatars.githubusercontent.com/u/66434978?v=4?s=100" width="100px;" alt="Adrián Paniagua"/><br /><sub><b>Adrián Paniagua</b></sub></a><br /><a href="https://github.com/gautamkrishnar/blog-post-workflow/commits?author=adrianpaniagualeon" title="Documentation">📖</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/muktoakash"><img src="https://avatars.githubusercontent.com/u/73410983?v=4?s=100" width="100px;" alt="Mukto Akash"/><br /><sub><b>Mukto Akash</b></sub></a><br /><a href="https://github.com/gautamkrishnar/blog-post-workflow/commits?author=muktoakash" title="Documentation">📖</a></td> </tr> </tbody> </table> <!-- markdownlint-restore --> <!-- prettier-ignore-end --> <!-- ALL-CONTRIBUTORS-LIST:END -->

This project follows the all-contributors specification. Contributions of any kind welcome!

Liked it?

Hope you liked this project, don't forget to give it a star ⭐.

<a href="https://starchart.cc/gautamkrishnar/blog-post-workflow"> <img alt="chart" src="https://starchart.cc/gautamkrishnar/blog-post-workflow.svg" width="600px"> </a>