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 ca43b93 commit ef6a646Copy full SHA for ef6a646
.github/workflows/blank.yml
@@ -0,0 +1,30 @@
1
+# GitHub Action for generating a contribution graph with a snake eating your contributions.
2
+
3
+name: Generate Snake
4
5
+on:
6
+ schedule:
7
+ - cron: "0 0 * * *"
8
+ workflow_dispatch:
9
10
+jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v2.3.4
17
18
+ - name: Generate Snake
19
+ uses: Platane/snk@master
20
+ id: snake-gif
21
+ with:
22
+ github_user_name: ${{ github.repository_owner }}
23
+ gif_out_path: ./assets/github-contribution-grid-snake.gif
24
+ svg_out_path: ./assets/github-contribution-grid-snake.svg
25
26
+ - name: Push to GitHub
27
+ uses: EndBug/add-and-commit@v7.2.1
28
29
+ branch: main
30
+ message: 'Generate Contribution Snake'
0 commit comments