Skip to content

Update README cards #139

Update README cards

Update README cards #139

Workflow file for this run

name: Update README cards
on:
schedule:
- cron: "0 */12 * * *"
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Generate pin purus card
uses: readme-tools/github-readme-stats-action@v1
with:
card: pin
options: show_owner=true&username=otoneko1102&repo=purus
path: profile/images/pin_purus.svg
token: ${{ secrets.GITHUB_TOKEN }}
- name: Commit cards
run: |
git config user.name "github-actions"
git config user.email "github-actions@users.noreply.github.com"
git add profile/images/*.svg
git commit -m "Update README images" || exit 0
git push