Thanks to visit codestin.com
Credit goes to github.com

Skip to content

GitHub-Profile-Summary-Cards #32042

GitHub-Profile-Summary-Cards

GitHub-Profile-Summary-Cards #32042

name: GitHub-Profile-Summary-Cards
on:
schedule: # execute every 24 hours
- cron: "0 * * * *"
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 }}
- name: generate github-contribution-grid-snake.svg
uses: Platane/snk@master
with:
github_user_name: ${{ github.repository_owner }}
svg_out_path: dist/github-contribution-grid-snake.svg
# push the content of <build_dir> to a branch
# the content will be available at https://raw.githubusercontent.com/<github_user>/<repository>/<target_branch>/<file> , or as github page
- name: push github-contribution-grid-snake.svg to the output branch
uses: crazy-max/[email protected]
with:
target_branch: output
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}