Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
on:
  schedule:
    - cron: '0 0 1 * *'
  push:
    branches:
      - main
  workflow_dispatch:
jobs:
  update:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v7
      with:
        fetch-depth: 0
    - name: Profile Readme Stats
      uses: teoxoy/profile-readme-stats@v3
      with:
        token: ${{ secrets.USER_TOKEN }}
    - name: Update README.md
      run: |
        git config --global user.name "github-actions"
        git config --global user.email "[email protected]"
        git add .
        git diff --staged --quiet || git commit -m "Update README $(date -u +'%Y-%m-%d %H:%M UTC')"
        git pull --rebase
        git push