🔧 How to update your Profile README with your Latest Blog Posts
Nachrichtenbereich: 🔧 Programmierung
🔗 Quelle: dev.to
Hi there
I will be talking to you about how to update your Profile README with your Latest Blog Posts
First You need to add the following code to Your README.md
### 📕 Latest Blog Posts
<!-- BLOG-POST-LIST:START -->
<!-- BLOG-POST-LIST:END -->
Then click on actions then click on setup a workflow yourself
Add a file to the .github/workflows
Add the following workflow code to this file:
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/nhelchitnis"
Then Enable the required settings
Finally you should have the following results, if you don't get the following results compare the code to my My Profile
and Boom You have updated you have updated your Profile README with your latest blog posts
See you next time
Bye
...
🔧 Update Profile README with Latest Blog Posts
📈 51.61 Punkte
🔧 Programmierung
🔧 Update Profile README with Latest Blog Posts
📈 51.61 Punkte
🔧 Programmierung
🔧 Update your Profile README with Streak Stats
📈 25.82 Punkte
🔧 Programmierung
🔧 Update Profile README with Todoist Stats
📈 23.51 Punkte
🔧 Programmierung
🔧 Making Your GitHub Readme Profile Stand Out
📈 23.28 Punkte
🔧 Programmierung
🔧 Improving Your GitHub Profile README
📈 23.28 Punkte
🔧 Programmierung
🔧 Plot GeoJSON on Your Blog Posts
📈 22.91 Punkte
🔧 Programmierung