mirror of
https://github.com/go-i2p/go-github-sync.git
synced 2025-06-30 20:53:08 -04:00
change module path
This commit is contained in:
@ -10,7 +10,7 @@ The `go-github-sync` tool creates GitHub Actions workflows that periodically pul
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Clone the repository
|
# Clone the repository
|
||||||
git clone https://github.com/go-i2p/go-github-sync.git
|
git clone https://i2pgit.org/go-i2p/go-github-sync.git
|
||||||
|
|
||||||
# Build the tool
|
# Build the tool
|
||||||
cd go-github-sync
|
cd go-github-sync
|
||||||
|
@ -8,11 +8,11 @@ import (
|
|||||||
"os/signal"
|
"os/signal"
|
||||||
"syscall"
|
"syscall"
|
||||||
|
|
||||||
"github.com/go-i2p/go-github-sync/pkg/config"
|
"i2pgit.org/go-i2p/go-github-sync/pkg/config"
|
||||||
"github.com/go-i2p/go-github-sync/pkg/git"
|
"i2pgit.org/go-i2p/go-github-sync/pkg/git"
|
||||||
"github.com/go-i2p/go-github-sync/pkg/github"
|
"i2pgit.org/go-i2p/go-github-sync/pkg/github"
|
||||||
"github.com/go-i2p/go-github-sync/pkg/logger"
|
"i2pgit.org/go-i2p/go-github-sync/pkg/logger"
|
||||||
"github.com/go-i2p/go-github-sync/pkg/workflow"
|
"i2pgit.org/go-i2p/go-github-sync/pkg/workflow"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
2
go.mod
2
go.mod
@ -1,4 +1,4 @@
|
|||||||
module github.com/go-i2p/go-github-sync
|
module i2pgit.org/go-i2p/go-github-sync
|
||||||
|
|
||||||
go 1.24.2
|
go 1.24.2
|
||||||
|
|
||||||
|
@ -9,8 +9,8 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/go-i2p/go-github-sync/pkg/config"
|
"i2pgit.org/go-i2p/go-github-sync/pkg/config"
|
||||||
"github.com/go-i2p/go-github-sync/pkg/logger"
|
"i2pgit.org/go-i2p/go-github-sync/pkg/logger"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Client provides Git repository validation and operations.
|
// Client provides Git repository validation and operations.
|
||||||
|
@ -11,8 +11,8 @@ import (
|
|||||||
"github.com/google/go-github/v61/github"
|
"github.com/google/go-github/v61/github"
|
||||||
"golang.org/x/oauth2"
|
"golang.org/x/oauth2"
|
||||||
|
|
||||||
"github.com/go-i2p/go-github-sync/pkg/config"
|
"i2pgit.org/go-i2p/go-github-sync/pkg/config"
|
||||||
"github.com/go-i2p/go-github-sync/pkg/logger"
|
"i2pgit.org/go-i2p/go-github-sync/pkg/logger"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
@ -8,8 +8,8 @@ import (
|
|||||||
|
|
||||||
"gopkg.in/yaml.v3"
|
"gopkg.in/yaml.v3"
|
||||||
|
|
||||||
"github.com/go-i2p/go-github-sync/pkg/config"
|
"i2pgit.org/go-i2p/go-github-sync/pkg/config"
|
||||||
"github.com/go-i2p/go-github-sync/pkg/logger"
|
"i2pgit.org/go-i2p/go-github-sync/pkg/logger"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Generator generates GitHub Actions workflow files.
|
// Generator generates GitHub Actions workflow files.
|
||||||
|
Reference in New Issue
Block a user