Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/foufou-exe/octocat

Github statistics generation
https://github.com/foufou-exe/octocat

github github-actions profile

Last synced: 1 day ago
JSON representation

Github statistics generation

Awesome Lists containing this project

README

        

# Octocat Github Stats Generator ✨






The aim of this project is to generate commits statistics from a specific GitHub repository and present them as an SVG file. The statistics are updated daily using a GitHub Action to reflect the latest contributions.

## Table of contents 🌲

- [Fonctionnalités](#fonctionnalités)
- [Utilisation](#utilisation)
- [GitHub Action](#github-action)

## Features 🎈

- Generates an SVG chart of commit statistics for a GitHub repository.
- Automatically updates data every day using a GitHub Action.
- Easy customisation of the graph by modifying the parameters.

## Use 📌

Pour utiliser ce générateur de statistiques, suivez ces étapes simples :

1. `Fork a project `
2. `Adapter le Github action` :



3. `Put your { TOKEN and repo } values in the 'Secret and vairable ==> Action ' `

4. `After test a Github Action`

## GitHub Action ⚙️
```yaml
name: GitHub-Profile-3D-Contrib

on:
schedule: # 03:00 JST == 18:00 UTC
- cron: "0 18 * * *"
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
name: generate-github-profile-3d-contrib
steps:
- uses: actions/checkout@v3
- uses: yoshi389111/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.TOKEN }}
USERNAME: ${{ github.repository_owner }}
- name: Commit & Push
run: |
git config user.name github-actions
git config user.email [email protected]
git add -A .
git commit -m "generated"
git push
```