GitHub-Profile-3D-Contrib #1489
This file contains hidden or 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: GitHub-Profile-3D-Contrib | |
| on: | |
| schedule: | |
| - cron: "0 7 * * *" | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: generate-github-profile-3d-contrib | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: yoshi389111/github-profile-3d-contrib@v0.9.2 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }} | |
| USERNAME: ${{ github.repository_owner }} | |
| - name: Commit & Push | |
| run: | | |
| git config user.name Atanas Atanasov | |
| git config user.email hi@atanas.info | |
| git add -A . | |
| git commit -m "Generate 3D images" | |
| git push |