Changes to folder structure to allow multigroups and changed go mod name (#2105)

* Changed folder structure to allow multi group registration

* included actions.github.com directory for resources and controllers

* updated go module to actions/actions-runner-controller

* publish arc packages under actions-runner-controller

* Update charts/actions-runner-controller/docs/UPGRADING.md

Co-authored-by: Yusuke Kuoka <ykuoka@gmail.com>
This commit is contained in:
Nikola Jokic
2022-12-28 01:38:34 +01:00
committed by GitHub
parent 086f9fd2d6
commit aa6dab5a9a
113 changed files with 226 additions and 226 deletions

View File

@@ -5,4 +5,4 @@ To use this, you need to write some Kubernetes manifest and a container image fo
For other information, please see the original pull request introduced it.
https://github.com/actions-runner-controller/actions-runner-controller/pull/682
https://github.com/actions/actions-runner-controller/pull/682

View File

@@ -5,8 +5,8 @@ import (
"fmt"
"os"
"github.com/actions-runner-controller/actions-runner-controller/pkg/hookdeliveryforwarder"
"github.com/actions-runner-controller/actions-runner-controller/pkg/hookdeliveryforwarder/configmap"
"github.com/actions/actions-runner-controller/pkg/hookdeliveryforwarder"
"github.com/actions/actions-runner-controller/pkg/hookdeliveryforwarder/configmap"
"github.com/go-logr/logr"
zaplib "go.uber.org/zap"

View File

@@ -9,7 +9,7 @@ import (
"os"
"sync"
"github.com/actions-runner-controller/actions-runner-controller/github"
"github.com/actions/actions-runner-controller/github"
"github.com/kelseyhightower/envconfig"
)

View File

@@ -9,7 +9,7 @@ import (
corev1 "k8s.io/api/core/v1"
kerrors "k8s.io/apimachinery/pkg/api/errors"
"github.com/actions-runner-controller/actions-runner-controller/pkg/hookdeliveryforwarder"
"github.com/actions/actions-runner-controller/pkg/hookdeliveryforwarder"
"k8s.io/apimachinery/pkg/types"
"sigs.k8s.io/controller-runtime/pkg/client"
)

View File

@@ -11,7 +11,7 @@ import (
"strings"
"time"
"github.com/actions-runner-controller/actions-runner-controller/github"
"github.com/actions/actions-runner-controller/github"
gogithub "github.com/google/go-github/v47/github"
)

View File

@@ -7,7 +7,7 @@ import (
"net/http"
"sync"
"github.com/actions-runner-controller/actions-runner-controller/github"
"github.com/actions/actions-runner-controller/github"
gogithub "github.com/google/go-github/v47/github"
)