From 7c95be3fafe7c8c3ab85004c3663c6ef4f49334b Mon Sep 17 00:00:00 2001
From: "Script.ez" <96830819+Scriptez1@users.noreply.github.com>
Date: Thu, 31 Jul 2025 19:28:16 +0300
Subject: [PATCH 03/17] Update main.yml
---
.github/workflows/main.yml | 70 ++++++++++++++++----------------------
1 file changed, 30 insertions(+), 40 deletions(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index c321541..0a6eb02 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -1,53 +1,43 @@
-# GitHub Action for generating a contribution graph with a snake eating your contributions.
-
-name: Generate Snake
-
-# Controls when the action will run. This action runs every 6 hours.
+name: generate animation
on:
+ # run automatically every 24 hours
schedule:
- # every 6 hours
- - cron: "0 */6 * * *"
-
-# This command allows us to run the Action automatically from the Actions tab.
+ - cron: "0 */24 * * *"
+
+ # allows to manually run the job at any time
workflow_dispatch:
+
+ # run on every push on the master branch
+ push:
+ branches:
+ - master
+
+
-# The sequence of runs in this workflow:
jobs:
- # This workflow contains a single job called "build"
- build:
- # The type of runner that the job will run on
+ generate:
+ permissions:
+ contents: write
runs-on: ubuntu-latest
-
- # Steps represent a sequence of tasks that will be executed as part of the job
+ timeout-minutes: 5
+
steps:
-
- # Checks repo under $GITHUB_WORKSHOP, so your job can access it
- - uses: actions/checkout@v2
-
- # Generates the snake
- - uses: Platane/snk@master
- id: snake-gif
+ # generates a snake game from a github user () contributions graph, output a svg animation at
+ - name: generate github-contribution-grid-snake.svg
+ uses: Platane/snk/svg-only@v3
with:
- github_user_name: Scriptez1
- # these next 2 lines generate the files on a branch called "output". This keeps the main branch from cluttering up.
- gif_out_path: dist/github-contribution-grid-snake.gif
- svg_out_path: dist/github-contribution-grid-snake.svg
-
- # show the status of the build. Makes it easier for debugging (if there's any issues).
- - run: git status
-
- # Push the changes
- - name: Push changes
- uses: ad-m/github-push-action@master
- with:
- github_token: ${{ secrets.GITHUB_TOKEN }}
- branch: master
- force: true
-
- - uses: crazy-max/ghaction-github-pages@v2.1.3
+ github_user_name: ${{ github.repository_owner }}
+ outputs: |
+ dist/github-contribution-grid-snake.svg
+ dist/github-contribution-grid-snake-dark.svg?palette=github-dark
+
+
+ # push the content of to a branch
+ # the content will be available at https://raw.githubusercontent.com//// , or as github page
+ - name: push github-contribution-grid-snake.svg to the output branch
+ uses: crazy-max/ghaction-github-pages@v3.1.0
with:
- # the output branch we mentioned above
target_branch: output
build_dir: dist
env:
From bb9f1cb5048801b8eca3256bc8fca9f39c8b3b39 Mon Sep 17 00:00:00 2001
From: "Script.ez" <96830819+Scriptez1@users.noreply.github.com>
Date: Thu, 31 Jul 2025 19:32:49 +0300
Subject: [PATCH 04/17] Update README.md
---
README.md | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/README.md b/README.md
index a8e7b4b..ac425b2 100644
--- a/README.md
+++ b/README.md
@@ -23,3 +23,9 @@
+
+
+
+
+
+
From a51abd273865ce081e698367e3fdd06d45d9cea0 Mon Sep 17 00:00:00 2001
From: "Script.ez" <96830819+Scriptez1@users.noreply.github.com>
Date: Thu, 31 Jul 2025 19:34:26 +0300
Subject: [PATCH 05/17] Update main.yml
---
.github/workflows/main.yml | 46 ++------------------------------------
1 file changed, 2 insertions(+), 44 deletions(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 0a6eb02..281fc04 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -1,44 +1,2 @@
-name: generate animation
-
-on:
- # run automatically every 24 hours
- schedule:
- - cron: "0 */24 * * *"
-
- # allows to manually run the job at any time
- workflow_dispatch:
-
- # run on every push on the master branch
- push:
- branches:
- - master
-
-
-
-jobs:
- generate:
- permissions:
- contents: write
- runs-on: ubuntu-latest
- timeout-minutes: 5
-
- steps:
- # generates a snake game from a github user () contributions graph, output a svg animation at
- - name: generate github-contribution-grid-snake.svg
- uses: Platane/snk/svg-only@v3
- with:
- github_user_name: ${{ github.repository_owner }}
- outputs: |
- dist/github-contribution-grid-snake.svg
- dist/github-contribution-grid-snake-dark.svg?palette=github-dark
-
-
- # push the content of to a branch
- # the content will be available at https://raw.githubusercontent.com//// , or as github page
- - name: push github-contribution-grid-snake.svg to the output branch
- uses: crazy-max/ghaction-github-pages@v3.1.0
- with:
- target_branch: output
- build_dir: dist
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+- name: generate-snake-game-from-github-contribution-grid
+ uses: Platane/snk@v3.3.0
From d0007eba0ebfe34fe48102c1606d57d4815d0516 Mon Sep 17 00:00:00 2001
From: "Script.ez" <96830819+Scriptez1@users.noreply.github.com>
Date: Thu, 31 Jul 2025 19:37:53 +0300
Subject: [PATCH 06/17] Update README.md
---
README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index ac425b2..9ee59e7 100644
--- a/README.md
+++ b/README.md
@@ -20,12 +20,12 @@
+
From 04681a48cfaa8a3c608eabcd53ed405b0ab4da0c Mon Sep 17 00:00:00 2001
From: "Script.ez" <96830819+Scriptez1@users.noreply.github.com>
Date: Tue, 9 Dec 2025 22:29:56 +0300
Subject: [PATCH 14/17] Remove email contact from README
Removed email contact information from README.
---
README.md | 2 --
1 file changed, 2 deletions(-)
diff --git a/README.md b/README.md
index 921a31c..5d6dc0d 100644
--- a/README.md
+++ b/README.md
@@ -10,8 +10,6 @@
- šØāš» All of my projects are available at [https://github.com/Scriptez1?tab=repositories](https://github.com/Scriptez1?tab=repositories)
-- š« How to reach me **omeryigitcelepci@gmail.com**
-
Connect with me:
From 40acf4ad8f69bd949778a5fbdc88aaae856a58b1 Mon Sep 17 00:00:00 2001
From: "Script.ez" <96830819+Scriptez1@users.noreply.github.com>
Date: Tue, 9 Dec 2025 22:30:28 +0300
Subject: [PATCH 15/17] Fix Discord link in README.md
Updated Discord link in the README file.
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 5d6dc0d..8ff2060 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@