We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 585fa82 commit 6165435Copy full SHA for 6165435
1 file changed
.github/workflows/profile-3d-contrib.yml
@@ -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