Skip to content

Commit 6165435

Browse files
authored
Add workflow which generates 3D contribution images
1 parent 585fa82 commit 6165435

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: GitHub-Profile-3D-Contrib
2+
3+
on:
4+
schedule: # 03:00 JST == 18:00 UTC
5+
- cron: "0 5 * * *"
6+
workflow_dispatch:
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
name: generate-github-profile-3d-contrib
12+
steps:
13+
- uses: actions/checkout@v2
14+
- uses: yoshi389111/github-profile-3d-contrib@0.6.0
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}
17+
USERNAME: ${{ github.repository_owner }}
18+
- name: Commit & Push
19+
run: |
20+
git config user.name Atanas Atanasov
21+
git config user.email hi@atanas.info
22+
git add -A .
23+
git commit -m "Generate 3D images"
24+
git push

0 commit comments

Comments
 (0)