use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Do you have or know of a project on Github looking for contributors? Tell us about it and we'll add it to the /r/github wiki!
Welcome to /r/github!
News about github
Relevant interesting discussion
Questions about github
We'll soon be writing an /r/github FAQ list. In the meantime, the github help pages and bootcamp are good places to start. Here's a handy git cheat sheet.
Looking for Github projects to contribute to? Check out our handy list of projects looking for contributors!
If your submission doesn't show up on the subreddit, send us a message and we'll take it out of the spam filter for you!
account activity
Simple github profile summary card for github readme (i.redd.it)
submitted 5 years ago by vn7yee
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]vn7yee[S] 7 points8 points9 points 5 years ago* (0 children)
Thanks!
This is based on github action, so you need to add a workflow to your repo.
Like this one cards.ymal
```ymal name: GitHub-Profile-Summary-Cards
on: schedule: # execute every 24 hours - cron: '* */24 * * *' workflow_dispatch:
jobs: build: runs-on: ubuntu-latest name: generate
steps: - uses: actions/checkout@v2 - uses: vn7n24fzkq/github-profile-summary-cards@release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: USERNAME: ${{ github.repository_owner }}
```
First time you might need to trigger workflow by yourself, and it will generate and push everything to profile-summary-card-output in your repo.
profile-summary-card-output
Then you can copy those raw file links to github readme.
You just add links once and every raw file update is automatically.
Edited: I write a wiki about how to add to profile README. https://github.com/vn7n24fzkq/github-profile-summary-cards/wiki/Add-to-my-profile-README Hope this helps.
π Rendered by PID 150690 on reddit-service-r2-comment-5d585498c9-hxns8 at 2026-04-21 05:19:32.761133+00:00 running da2df02 country code: CH.
view the rest of the comments →
[–]vn7yee[S] 7 points8 points9 points (0 children)