All Projects → teoxoy → profile-readme-stats

teoxoy / profile-readme-stats

Licence: MIT License
Showcase your github stats on your profile README.md

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to profile-readme-stats

prathimacode-hub
Hello everyone, Welcome to my GitHub README profile. Glad to see you here! Check out this repository to view my work and learn more about me. Don't just star it, fork it as well.📢✌️
Stars: ✭ 53 (-63.19%)
Mutual labels:  github-profile, github-actions, profile-readme
recent-activity
Add your recent activity to your profile readme!
Stars: ✭ 87 (-39.58%)
Mutual labels:  github-actions, profile-readme
peterthehan
My personal site and profile README.
Stars: ✭ 36 (-75%)
Mutual labels:  github-profile, profile-readme
Thomas-George-T
Readme for Github Profile. Don't just fork it, Star it too ⭐!
Stars: ✭ 31 (-78.47%)
Mutual labels:  github-profile, profile-readme
jakejarvis
hey 👋
Stars: ✭ 15 (-89.58%)
Mutual labels:  github-profile, profile-readme
Metrics
📊 An infographics generator with 30+ plugins and 200+ options to display stats about your GitHub account and render them as SVG, Markdown, PDF or JSON!
Stars: ✭ 4,621 (+3109.03%)
Mutual labels:  github-profile, profile-readme
DenverCoder1
Jonah Lawrence's Profile README
Stars: ✭ 320 (+122.22%)
Mutual labels:  github-actions, profile-readme
github-readme-streak-stats
🔥 Stay motivated and show off your contribution streak! 🌟 Display your total contributions, current streak, and longest streak on your GitHub profile README
Stars: ✭ 1,395 (+868.75%)
Mutual labels:  github-profile, profile-readme
blackcater
Using Node.js to generate my Github profile readme automatically.
Stars: ✭ 84 (-41.67%)
Mutual labels:  github-profile, github-actions
vidyabhandary
Self updating profile readme for github
Stars: ✭ 36 (-75%)
Mutual labels:  github-actions, profile-readme
SudhanPlayz
About me for GitHub <3
Stars: ✭ 24 (-83.33%)
Mutual labels:  github-profile, profile-readme
github-profile-3d-contrib
This GitHub Action creates a GitHub contribution calendar on a 3D profile image.
Stars: ✭ 230 (+59.72%)
Mutual labels:  github-profile, profile-readme
ouuan
A profile README with 86 stars and 152 forks 🌟
Stars: ✭ 86 (-40.28%)
Mutual labels:  github-profile, profile-readme
Spiderpig86
💎 Me. This is a self-updating README. Star it if you like it :)
Stars: ✭ 40 (-72.22%)
Mutual labels:  github-actions, profile-readme
Raymo111
My awesome profile README
Stars: ✭ 110 (-23.61%)
Mutual labels:  github-profile, profile-readme
action-label-syncer
GitHub Action to sync GitHub labels in the declarative way
Stars: ✭ 138 (-4.17%)
Mutual labels:  github-actions
setup-scheme
Github Actions CI / CD setup for Scheme
Stars: ✭ 13 (-90.97%)
Mutual labels:  github-actions
googletest-ci
Continuous integration (CI) + Google Test (gtest) + CMake example boilerplate demo
Stars: ✭ 14 (-90.28%)
Mutual labels:  github-actions
actions-sms
Send an SMS through GitHub Actions
Stars: ✭ 108 (-25%)
Mutual labels:  github-actions
laravel-phpinsights-action
Run PHP Insights in Laravel in Github Actions
Stars: ✭ 17 (-88.19%)
Mutual labels:  github-actions

Profile Readme Stats

Showcase your github stats on your profile README.md.

This action provides template strings that are replaced with their respective values when the action runs.

Example: TEMPLATEREADME

Table of contents

Action Inputs

token

Required

Personal access token with read:user scope and optional repo scope

Generate token here: https://github.com/settings/tokens

Note: repo scope is needed for taking private repositories into account

template

Path to template file (default: ./TEMPLATE.md)

readme

Path to generated file (default: ./README.md)

includeForks

Include forked repositories when calculating the stats (default: false)

Template Strings

General

{{ ACCOUNT_AGE }}

Account age in years.

{{ ISSUES }}

Total number of opened issues across all repositories.

{{ PULL_REQUESTS }}

Total number of opened pull requests across all repositories.

{{ CODE_REVIEWS }}

Total number of pull requests reviewed across all repositories.

{{ COMMITS }}

Total number of commits across all repositories. Includes commits in private repositories only if you allowed github to show your private contributions on your profile (check out this link for more info).

{{ GISTS }}

Total number of public gists.

{{ REPOSITORIES }}

Total number of repositories. Includes private repositories if the given personal access token has repo scope (see more here).

{{ REPOSITORIES_CONTRIBUTED_TO }}

Total number of repositories you contributed to.

{{ STARS }}

Total number of stars on all your gists and repositories.

Languages

A region that will be repeated for every language you use in your repositories.

{{ LANGUAGE_TEMPLATE_START }}

Special template string that signifies the start of the region.

{{ LANGUAGE_NAME }}

Name of the language.

{{ LANGUAGE_PERCENT }}

How often the language is used in your repositories (percentage wise).

{{ LANGUAGE_COLOR }}

Color of the language (in CSS color format ex: #0248AC).

{{ LANGUAGE_TEMPLATE_END }}

Special template string that signifies the end of the region.

Extra Options

uri

Will encode the value as an URI component

Example:

{{ LANGUAGE_COLOR:uri }}

max

Can only be used with LANGUAGE_TEMPLATE_START

Will run the inner template at most max nr of times

Example:

{{ LANGUAGE_TEMPLATE_START:max=5 }}
This text will be printed at most 5 times
{{ LANGUAGE_TEMPLATE_END }}

Example Workflow

on:
  schedule:
    - cron: '0 */12 * * *' # every 12 hours
  push:
    branches:
      - master
      - main
jobs:
  publish:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
      with:
        fetch-depth: 0
    - name: Generate README.md
      uses: teoxoy/profile-readme-stats@v1
      with:
        token: ${{ secrets.USER_TOKEN }}
    - name: Update README.md
      run: |
        if [[ "$(git status --porcelain)" != "" ]]; then
        git config user.name github-actions[bot]
        git config user.email 41898282+github-actions[bot]@users.noreply.github.com
        git add .
        git commit -m "Update README"
        git push
        fi
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].