惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

H
Help Net Security
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 三生石上(FineUI控件)
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Vercel News
Vercel News
人人都是产品经理
人人都是产品经理
G
Google Developers Blog
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
雷峰网
雷峰网
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
博客园 - 叶小钗
D
DataBreaches.Net
D
Docker
月光博客
月光博客
博客园 - 司徒正美
Last Week in AI
Last Week in AI
有赞技术团队
有赞技术团队
腾讯CDC
酷 壳 – CoolShell
酷 壳 – CoolShell

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How to Create a Self-Updating README.md for Your GitHub P...
Allen Lee · 2026-06-23 · via DEV Community

Allen Lee

GitHub recently released a feature that allows users to create a profile-level README.md file, that is displayed on your profile page, above repositories.

That’s a great feature you can use to display more information about yourself and your work, especially because it allows more content than the regular profile bio.

You might have noticed how people went crazy and are already pushing the limits of what can be done with Markdown and GitHub!

Above is my GitHub README at the time of writing this article.

I use it to tell it more about myself, show a list of my Open Source Projects and their status. Which is also useful for me as I can see quickly if I have any new open issues on them.

Now, more exciting, I made it self-updating, so I can give “live” information about the city where I live, Stockholm:

Using Puppeteer, I fetch the 3 latest pictures posted on @visitstockholm Instagram account,
I retrieve the weather information, temperature and daylight hours with the OpenWeatherMap,
While you are quite limited with Markdown, there are still a lot of cool things you can do!

In this tutorial, you are going to create your own README.md file for your GitHub Profile and learn how to make it dynamic, using GitHub Actions!

If you feel stuck or lost, check how I did it in my repository.

Create a new repository
First thing first, to unlock this feature, you need to create a new repository. It needs to be named the same name as your GitHub username.

You will notice that GitHub informs you of how special this new repository is!

Press enter or click to view image in full size

If you check the Initialize this repository with a README checkbox, then you should already see something if you go back to your Profile page.

Setup the project
Let’s make this README.md a bit more dynamic!
Clone the repository to your computer and open a terminal to its directory and create a new npm project.

$ npm init
We are going to use Mustache, which allows us to create a template and easily replace tags with data we will provide later.

$ npm i mustache
Create a mustache template
Create a new mustache file in the directory.

$ touch main.mustache
Open it and fill it with …anything your want :).

Let’s keep it simple for now:

My name is {{name}} and today is {{date}}.
Notice the {{___}} tag? That’s how Mustache recognizes something can be placed there.

Generate README.md file from a Mustache template
Create a index.js file, where we will write the code:

$ touch index.js
Fill it with the code below:

// index.js
const Mustache = require('mustache');
const fs = require('fs');
const MUSTACHE_MAIN_DIR = './main.mustache';
/**

  • DATA is the object that contains all
  • the data to be provided to Mustache
  • Notice the "name" and "date" property. / let DATA = { name: 'Thomas', date: new Date().toLocaleDateString('en-GB', { weekday: 'long', month: 'long', day: 'numeric', hour: 'numeric', minute: 'numeric', timeZoneName: 'short', timeZone: 'Europe/Stockholm', }), }; /*
  • A - We open 'main.mustache'
  • B - We ask Mustache to render our file with the data
  • C - We create a README.md file with the generated output */ function generateReadMe() { fs.readFile(MUSTACHE_MAIN_DIR, (err, data) => { if (err) throw err; const output = Mustache.render(data.toString(), DATA); fs.writeFileSync('README.md', output); }); } generateReadMe(); With that, you can now run node index.js in your terminal and it should generate a brand new README.md file in the same directory:

// Generated content in README.md
My name is Thomas and today is Thursday, July 23.
Awesome! Commit and push everything. Now, you can see that your README.md displayed on your Profile page has been updated.

Generate your README automatically with Github Actions:
That’s great but you don’t want to be having to commit a new version of your README.md every day. Let’s automate this!

We are going to use GitHub Actions for that. If you have never used it before, this is going to be a good first project.

With Actions, you can create workflows to automate tasks. Actions live in the same place as the rest of the code, in a special directory: ./.github/worflows .

$ mkdir .github && cd .github && mkdir workflows
In this ./workflows folder, create a ./main.yaml file that will hold our Action.

$ cd ./workflows && touch main.yaml
Fill it with this content:

This Action has one Job, build , that runs on the specified machine, ubuntu-latest .

Lines 3 to 8 define when is triggered this action:

On every push to the Master branch,
Or on a specified schedule, here 6 hours.
The scheduler allows you to trigger a workflow at a scheduled time. The cron syntax has five fields separated by a space, and each field represents a unit of time.

If you want to know more about it and set your own schedule, read the Scheduled Events documentation.

When triggered, this job will execute the steps one after the other.

For the rest of the file, read what I wrote next to name: to understand what is happening for each step.

That’s it!
Commit and push your work to GitHub and you are done! Every 6 hours, the Action will be triggered, generate a new README.md file, and push it to the master branch.

Now, this is the most simple example I could come up with and I kept it simple to only talk about how to make your personal README.md automatically generated.

Let’s see some examples of what you can do: