GitHub-Profile-3D-Contrib #197
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: | |
schedule: # 03:00 JST == 18:00 UTC | |
- cron: "0 18 * * *" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: generate-github-profile-3d-contrib | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: yoshi389111/github-profile-3d-contrib@0.6.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.TOKEN }} | |
USERNAME: ${{ github.repository_owner }} | |
- name: Commit & Push | |
run: | | |
git config user.name gotobill | |
git config user.email wnqudwnrlrl@naver.com | |
git add -A . | |
git commit -m "generated" | |
git push |