51 lines
1.6 KiB
YAML
51 lines
1.6 KiB
YAML
name: Update Code Statistics
|
|
on:
|
|
push:
|
|
paths:
|
|
- 'public/code-stats.json'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
sync-stats:
|
|
runs-on: sh
|
|
steps:
|
|
- name: Manual Internal Checkout
|
|
run: |
|
|
git clone http://gitea-http:3000/${{ github.repository }}.git .
|
|
git checkout ${{ github.ref_name }}
|
|
|
|
- name: Update README
|
|
run: |
|
|
LOC=$(grep '"total_code"' public/code-stats.json | sed 's/[^0-9]*//g')
|
|
FORMATTED_LOC=$(printf "%'d" $LOC)
|
|
echo "Syncing $FORMATTED_LOC lines..."
|
|
|
|
python3 -c "
|
|
import os
|
|
content = open('README.md').read()
|
|
marker_start = ''
|
|
marker_end = ''
|
|
if marker_start in content and marker_end in content:
|
|
before = content.split(marker_start)[0]
|
|
after = content.split(marker_end)[1]
|
|
new_content = before + marker_start + '$FORMATTED_LOC' + marker_end + after
|
|
with open('README.md', 'w') as f:
|
|
f.write(new_content)
|
|
print('Successfully updated README.')
|
|
else:
|
|
print('Markers not found!')
|
|
exit(1)
|
|
"
|
|
|
|
- name: Commit and Push
|
|
run: |
|
|
git config user.name "Ares-Bot"
|
|
git config user.email "ares@beane.me"
|
|
git add README.md
|
|
if git diff --staged --quiet; then
|
|
echo "No changes"
|
|
else
|
|
git commit -m "chore: sync code velocity to $FORMATTED_LOC LOC [skip ci]"
|
|
git push http://${{ secrets.GITHUB_TOKEN }}@gitea-http:3000/${{ github.repository }}.git ${{ github.ref_name }}
|
|
fi
|