GitHub-Profile-3D-Contrib #678
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: GitHub-Profile-3D-Contrib | |
on: | |
# push: | |
schedule: # 03:00 JST == 18:00 UTC | |
# - cron: "0 18 * * *" | |
- cron: "0 23 */2 * *" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: generate-github-profile-3d-contrib | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: yoshi389111/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.TOKEN }} | |
USERNAME: ${{ github.repository_owner }} | |
- name: Commit & Push | |
run: | | |
git config user.name sunil-9 | |
git config user.email [email protected] | |
git pull origin main | |
git add -A . | |
git commit -m "generated images" | |
git push |