Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
```

Expand Down
4 changes: 2 additions & 2 deletions events/deployment_status.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
4 changes: 2 additions & 2 deletions events/ping.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
4 changes: 2 additions & 2 deletions events/push.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
4 changes: 2 additions & 2 deletions events/star.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
4 changes: 2 additions & 2 deletions events/workflow_run.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/Luna-devv/githook
module github.com/shi-gg/githook

go 1.24.4

Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
4 changes: 2 additions & 2 deletions routes/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
6 changes: 3 additions & 3 deletions routes/incoming.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
Loading