Add badges folder. #42
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lines Of Code | |
on: [push] | |
jobs: | |
print-repo-url: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Create Workspace Folder | |
run: mkdir -p wrdir | |
- name: get Lines Of Code repo | |
run: git clone https://github.com/yasserbdj96/linesofcode.git wrdir | |
- name: Install requirements | |
run: pip install -r wrdir/requirements.txt | |
- name: Get this repository badges | |
run: cd wrdir && python main.py --URL="https://github.com/${{ github.repository }}" | |
- name: Copy badges back to current repo | |
run: mkdir -p badges && cp -R ./wrdir/badges/* ./badges/ && cp -R ./wrdir/badges.md ./badges.md | |
- name: remove | |
run: rm -rf wrdir | |
- name: Commit and push changes | |
run: | | |
git config --global user.email "github-actions@github.com" | |
git config --global user.name "GitHub Actions" | |
git add . | |
git commit -m "Add badges folder." | |
git pull --rebase origin main | |
git push origin main |