Skip to content

GitHub-Profile-3D-Contrib #611

GitHub-Profile-3D-Contrib

GitHub-Profile-3D-Contrib #611

Workflow file for this run

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@v3
- uses: yoshi389111/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
USERNAME: ${{ github.repository_owner }}
- name: Commit & Push
run: |
git config --local user.name '${{ github.repository_owner }}'
git config --local user.email '${{ github.repository_owner }}@users.noreply.github.com'
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
git add -A .
git commit -m "feat: updated profile contrib status"
git push