-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
3 changed files
with
315 additions
and
339 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,96 @@ | ||
name: GitHub Clone Count Update | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- '.github/workflows/clone.yml' | ||
schedule: | ||
- cron: "0 */24 * * *" | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: gh login | ||
run: echo "${{ secrets.SECRET_TOKEN }}" | gh auth login --with-token | ||
|
||
- name: parse latest clone count | ||
run: | | ||
curl --user "${{ github.actor }}:${{ secrets.SECRET_TOKEN }}" \ | ||
-H "Accept: application/vnd.github.v3+json" \ | ||
https://api.github.com/repos/${{ github.repository }}/traffic/clones \ | ||
> clone.json | ||
- name: create gist and download previous count | ||
id: set_id | ||
run: | | ||
if gh secret list | grep -q "GIST_ID" | ||
then | ||
echo "GIST_ID found" | ||
echo ::set-output name=GIST::${{ secrets.GIST_ID }} | ||
curl https://gist.githubusercontent.com/${{ github.actor }}/${{ secrets.GIST_ID }}/raw/clone.json > clone_before.json | ||
if cat clone_before.json | grep '404: Not Found'; then | ||
echo "GIST_ID not valid anymore. Creating another gist..." | ||
gist_id=$(gh gist create clone.json | awk -F / '{print $NF}') | ||
echo $gist_id | gh secret set GIST_ID | ||
echo ::set-output name=GIST::$gist_id | ||
cp clone.json clone_before.json | ||
git rm --ignore-unmatch .clone.md | ||
fi | ||
else | ||
echo "GIST_ID not found. Creating a gist..." | ||
gist_id=$(gh gist create clone.json | awk -F / '{print $NF}') | ||
echo $gist_id | gh secret set GIST_ID | ||
echo ::set-output name=GIST::$gist_id | ||
cp clone.json clone_before.json | ||
fi | ||
- name: update clone.json | ||
run: | | ||
curl https://raw.githubusercontent.com/MShawon/github-clone-count-badge/master/main.py > main.py | ||
python3 main.py | ||
- name: Update gist with latest count | ||
run: | | ||
content=$(sed -e 's/\\/\\\\/g' -e 's/\t/\\t/g' -e 's/\"/\\"/g' -e 's/\r//g' "clone.json" | sed -E ':a;N;$!ba;s/\r{0,1}\n/\\n/g') | ||
echo '{"description": "${{ github.repository }} clone statistics", "files": {"clone.json": {"content": "'"$content"'"}}}' > post_clone.json | ||
curl -s -X PATCH \ | ||
--user "${{ github.actor }}:${{ secrets.SECRET_TOKEN }}" \ | ||
-H "Content-Type: application/json" \ | ||
-d @post_clone.json https://api.github.com/gists/${{ steps.set_id.outputs.GIST }} > /dev/null 2>&1 | ||
if [ ! -f .clone.md ]; then | ||
shields="https://img.shields.io/badge/dynamic/json?color=success&label=Clone&query=count&url=" | ||
url="https://gist.githubusercontent.com/${{ github.actor }}/${{ steps.set_id.outputs.GIST }}/raw/clone.json" | ||
repo="https://github.com/MShawon/github-clone-count-badge" | ||
echo ''> .clone.md | ||
echo ' | ||
**Markdown** | ||
```markdown' >> .clone.md | ||
echo "[![GitHub Clones]($shields$url&logo=github)]($repo)" >> .clone.md | ||
echo ' | ||
``` | ||
**HTML** | ||
```html' >> .clone.md | ||
echo "<a href='$repo'><img alt='GitHub Clones' src='$shields$url&logo=github'></a>" >> .clone.md | ||
echo '```' >> .clone.md | ||
git add .clone.md | ||
git config --global user.name "GitHub Action" | ||
git config --global user.email "action@github.com" | ||
git commit -m "create clone count badge" | ||
fi | ||
- name: Push | ||
uses: ad-m/github-push-action@master | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
branch: ${{ github.ref }} |
Oops, something went wrong.