gitartwork on user's contribution graph, make a SVG image of it and finally push it back to your repository.
-
Copy the workflow code into a
.github/workflows/gitartwork.yml
file in your repository.name: gitartwork from a contribution graph on: push: schedule: - cron: '* */24 * * *' workflow_dispatch: jobs: build: name: Make gitartwork SVG runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: jasineri/gitartwork@v1 with: # Use this username's contribution graph user_name: jasineri # Text on contribution graph text: JASINERI - uses: jasineri/simple-push-action@v1
-
A few moments later it will generate
gitartwork.svg
image in your repository, so then you can include it in yourREADME.md
like![gitartwork](gitartwork.svg)
-
Have fun :)
Still in progress...