GitHub-Profile-3D-Contrib #967
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: # 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.7.0 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
USERNAME: ${{ github.repository_owner }} | |
- name: Commit & Push | |
run: | | |
git config user.name coderDaiyan | |
git config user.email daiyanabdallah@gmail.com | |
git add -A . | |
git commit -m "generated" | |
git push |