From 5578f972728552fe98da6f3b56dd0598f6d0a183 Mon Sep 17 00:00:00 2001 From: Drijon <87547203+drijonh@users.noreply.github.com> Date: Sat, 3 Jan 2026 14:52:36 +0100 Subject: [PATCH] refactor: github name change --- README.md | 2 +- events/deployment_status.go | 4 ++-- events/ping.go | 4 ++-- events/push.go | 4 ++-- events/star.go | 4 ++-- events/workflow_run.go | 4 ++-- go.mod | 2 +- main.go | 4 ++-- routes/create.go | 4 ++-- routes/incoming.go | 6 +++--- 10 files changed, 19 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 38f775a..062a721 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ docker compose up -d ## Develope Clone this repo and start the server with the following commands: ```bash -git clone https://github.com/Luna-devv/githook +git clone https://github.com/shi-gg/githook go run . ``` diff --git a/events/deployment_status.go b/events/deployment_status.go index 91868cb..d91b69b 100644 --- a/events/deployment_status.go +++ b/events/deployment_status.go @@ -5,8 +5,8 @@ import ( "fmt" "net/http" - "github.com/Luna-devv/githook/discord" - "github.com/Luna-devv/githook/utils" + "github.com/shi-gg/githook/discord" + "github.com/shi-gg/githook/utils" "github.com/google/go-github/v61/github" ) diff --git a/events/ping.go b/events/ping.go index 4712d20..01fca4a 100644 --- a/events/ping.go +++ b/events/ping.go @@ -5,8 +5,8 @@ import ( "fmt" "net/http" - "github.com/Luna-devv/githook/discord" - "github.com/Luna-devv/githook/utils" + "github.com/shi-gg/githook/discord" + "github.com/shi-gg/githook/utils" "github.com/google/go-github/v61/github" ) diff --git a/events/push.go b/events/push.go index 1a964e2..eb77ae3 100644 --- a/events/push.go +++ b/events/push.go @@ -6,8 +6,8 @@ import ( "net/http" "strings" - "github.com/Luna-devv/githook/discord" - "github.com/Luna-devv/githook/utils" + "github.com/shi-gg/githook/discord" + "github.com/shi-gg/githook/utils" "github.com/google/go-github/v61/github" ) diff --git a/events/star.go b/events/star.go index 1fa616e..a1a153e 100644 --- a/events/star.go +++ b/events/star.go @@ -5,8 +5,8 @@ import ( "fmt" "net/http" - "github.com/Luna-devv/githook/discord" - "github.com/Luna-devv/githook/utils" + "github.com/shi-gg/githook/discord" + "github.com/shi-gg/githook/utils" "github.com/google/go-github/v61/github" ) diff --git a/events/workflow_run.go b/events/workflow_run.go index 7eb2e61..e1526e1 100644 --- a/events/workflow_run.go +++ b/events/workflow_run.go @@ -7,8 +7,8 @@ import ( "strings" "time" - "github.com/Luna-devv/githook/discord" - "github.com/Luna-devv/githook/utils" + "github.com/shi-gg/githook/discord" + "github.com/shi-gg/githook/utils" "github.com/google/go-github/v61/github" "github.com/redis/go-redis/v9" ) diff --git a/go.mod b/go.mod index 0bf06bf..27c0cd3 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/Luna-devv/githook +module github.com/shi-gg/githook go 1.24.4 diff --git a/main.go b/main.go index eb09be4..ec6fe0d 100644 --- a/main.go +++ b/main.go @@ -3,8 +3,8 @@ package main import ( "net/http" - "github.com/Luna-devv/githook/config" - "github.com/Luna-devv/githook/routes" + "github.com/shi-gg/githook/config" + "github.com/shi-gg/githook/routes" _ "github.com/joho/godotenv/autoload" "github.com/redis/go-redis/v9" ) diff --git a/routes/create.go b/routes/create.go index cb48e59..1c25c8e 100644 --- a/routes/create.go +++ b/routes/create.go @@ -3,8 +3,8 @@ package routes import ( "net/http" - "github.com/Luna-devv/githook/config" - "github.com/Luna-devv/githook/utils" + "github.com/shi-gg/githook/config" + "github.com/shi-gg/githook/utils" _ "github.com/joho/godotenv/autoload" ) diff --git a/routes/incoming.go b/routes/incoming.go index 1f3c245..2db5b19 100644 --- a/routes/incoming.go +++ b/routes/incoming.go @@ -4,9 +4,9 @@ import ( "fmt" "net/http" - "github.com/Luna-devv/githook/config" - "github.com/Luna-devv/githook/events" - "github.com/Luna-devv/githook/utils" + "github.com/shi-gg/githook/config" + "github.com/shi-gg/githook/events" + "github.com/shi-gg/githook/utils" _ "github.com/joho/godotenv/autoload" "github.com/redis/go-redis/v9" )