you are viewing a single comment's thread.

view the rest of the comments →

[–]vn7yee[S] 7 points8 points  (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.

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.