Skip to content

Commit 2a2fc52

Browse files
authored
Organization rename to stolostron (#31)
* Organization rename to `stolostron` - stolostron/backlog#17978 Signed-off-by: Dale Haiducek <[email protected]> * Fix linting Signed-off-by: Dale Haiducek <[email protected]> * Fix community links Signed-off-by: Dale Haiducek <[email protected]> * Fix URL prefixes Signed-off-by: Dale Haiducek <[email protected]>
1 parent 7d73a19 commit 2a2fc52

File tree

17 files changed

+21
-21
lines changed

17 files changed

+21
-21
lines changed

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Refer to our
2-
[Open Cluster Management Community Code of Conduct](https://github.com/open-cluster-management/community/blob/main/CODE_OF_CONDUCT.md)
2+
[Open Cluster Management Community Code of Conduct](https://github.com/open-cluster-management-io/community/blob/main/CODE_OF_CONDUCT.md)

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ By contributing to this project, you agree to the Developer Certificate of
2222
Origin (DCO). This document was created by the Linux Kernel community and is a
2323
simple statement that you, as a contributor, have the legal right to make the
2424
contribution. See the
25-
[DCO](https://github.com/open-cluster-management/community/blob/main/DCO) file
25+
[DCO](https://github.com/open-cluster-management-io/community/blob/main/DCO) file
2626
for details.
2727

2828
## DCO Sign Off
2929

3030
You must sign off your commit to state that you certify the
31-
[DCO](https://github.com/open-cluster-management/community/blob/main/DCO). To
31+
[DCO](https://github.com/open-cluster-management-io/community/blob/main/DCO). To
3232
certify your commit for DCO, add a line like the following at the end of your
3333
commit message:
3434

@@ -44,7 +44,7 @@ for details.
4444

4545
The Open Cluster Management project has adopted the CNCF Code of Conduct. Refer
4646
to our
47-
[Community Code of Conduct](https://github.com/open-cluster-management/community/blob/main/CODE_OF_CONDUCT.md)
47+
[Community Code of Conduct](https://github.com/open-cluster-management-io/community/blob/main/CODE_OF_CONDUCT.md)
4848
for details.
4949

5050
## Contributing a patch

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ For more about Open Cluster Management and its Policy Framework:
1010

1111
- [Open Cluster Management website](https://open-cluster-management.io/)
1212
- [Governance Policy Framework](https://open-cluster-management.io/getting-started/integration/policy-framework/)
13-
- [Policy Collection repository](https://github.com/open-cluster-management/policy-collection)
13+
- [Policy Collection repository](https://github.com/stolostron/policy-collection)
1414

1515
## Using the Policy Generator
1616

@@ -21,7 +21,7 @@ For more about Open Cluster Management and its Policy Framework:
2121
##### Install from the GitHub release
2222

2323
1. Download the precompiled plugin binary from the
24-
[release](https://github.com/open-cluster-management/policy-generator-plugin/releases)
24+
[release](https://github.com/stolostron/policy-generator-plugin/releases)
2525
of your choice.
2626

2727
2. Create the plugin directory:

SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
Refer to our
2-
[Community Security Response](https://github.com/open-cluster-management/community/blob/main/SECURITY.md).
2+
[Community Security Response](https://github.com/open-cluster-management-io/community/blob/main/SECURITY.md).

build/common/Makefile.common.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ lint-go:
1414
lint-all: lint-go lint-yaml
1515

1616
format-go:
17-
@${FINDFILES} -name '*.go' \( ! \( -name '*.gen.go' -o -name '*.pb.go' \) \) -print0 | ${XARGS} goimports -w -local "github.com/open-cluster-management"
17+
@${FINDFILES} -name '*.go' \( ! \( -name '*.gen.go' -o -name '*.pb.go' \) \) -print0 | ${XARGS} goimports -w -local "github.com/stolostron"
1818

1919
.PHONY: lint-go lint-yaml

cmd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"os"
88
"path"
99

10-
"github.com/open-cluster-management/policy-generator-plugin/internal"
1110
"github.com/spf13/pflag"
11+
"github.com/stolostron/policy-generator-plugin/internal"
1212
)
1313

1414
var debug = false

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/open-cluster-management/policy-generator-plugin
1+
module github.com/stolostron/policy-generator-plugin
22

33
go 1.16
44

internal/expanders/expanders.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
package expanders
33

44
import (
5-
"github.com/open-cluster-management/policy-generator-plugin/internal/types"
5+
"github.com/stolostron/policy-generator-plugin/internal/types"
66
)
77

88
// GetExpanders returns the list of available expanders.

internal/expanders/gatekeeper.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package expanders
44
import (
55
"fmt"
66

7-
"github.com/open-cluster-management/policy-generator-plugin/internal/types"
7+
"github.com/stolostron/policy-generator-plugin/internal/types"
88
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
99
)
1010

internal/expanders/gatekeeper_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"testing"
77

8-
"github.com/open-cluster-management/policy-generator-plugin/internal/types"
8+
"github.com/stolostron/policy-generator-plugin/internal/types"
99
)
1010

1111
func TestGatekeeperCanHandle(t *testing.T) {

0 commit comments

Comments
 (0)