-
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6e0a132
commit c5de29b
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Lines Of Code | ||
|
||
on: [push] | ||
|
||
jobs: | ||
print-repo-url: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
- name: Install requirements | ||
run: pip install -r requirements.txt | ||
- 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: Get this repository badges | ||
run: python wrdir/main.py --URL="https://github.com/${{ github.repository }}" | ||
- name: remove | ||
run: rm -rf wrdir | ||
#- name: Copy badges back to current repo | ||
# run: cp -R ./badges/. . | ||
- name: Commit and push changes | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "GitHub Actions" | ||
git add . | ||
git commit -m "Add badges folder." | ||
git push |