Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup maxgio92 references #6

Merged
merged 7 commits into from
Aug 21, 2023
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 .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ linters-settings:
sections:
- standard # Captures all standard packages if they do not match another section.
- default # Contains all imports that could not be matched to another section type.
- prefix(github.com/maxgio92/peribolos-owners-syncer) # Groups all imports with the specified Prefix.
- prefix(github.com/falcosecurity/peribolos-owners-syncer) # Groups all imports with the specified Prefix.
tagliatelle:
case:
rules:
Expand Down
2 changes: 1 addition & 1 deletion .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ signs:

kos:
- base_image: cgr.dev/chainguard/static
repository: ghcr.io/maxgio92/peribolos-syncer
repository: ghcr.io/falcosecurity/peribolos-syncer
bare: true
tags:
- '{{ .Version }}'
Expand Down
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
APP := peribolos-syncer

user := maxgio92
bins := git go gofumpt golangci-lint ginkgo

define declare_binpaths
Expand Down
14 changes: 14 additions & 0 deletions cmd/contants.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
// Copyright 2023 The Falco Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package cmd

const (
Expand Down
34 changes: 16 additions & 18 deletions cmd/root.go
Original file line number Diff line number Diff line change
@@ -1,27 +1,25 @@
/*
Copyright © 2023 maxgio92 [email protected]

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Copyright 2023 The Falco Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package cmd

import (
"github.com/maxgio92/peribolos-syncer/cmd/version"
"github.com/spf13/cobra"

"github.com/maxgio92/peribolos-syncer/cmd/sync"
"github.com/maxgio92/peribolos-syncer/internal/output"
"github.com/falcosecurity/peribolos-syncer/cmd/sync"
"github.com/falcosecurity/peribolos-syncer/cmd/version"
"github.com/falcosecurity/peribolos-syncer/internal/output"
)

// New returns a new root command.
Expand Down
14 changes: 14 additions & 0 deletions cmd/sync/contants.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
// Copyright 2023 The Falco Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package sync

const (
Expand Down
16 changes: 15 additions & 1 deletion cmd/sync/github/constants.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
// Copyright 2023 The Falco Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package github

const (
Expand All @@ -12,7 +26,7 @@ peribolos-syncer sync github --org=acme --team=app-maintainers
--gpg-public-key=./bot.pub --gpg-private-key=./bot.asc
`

syncerSignature = "Autogenerated with [peribolos-syncer](https://github.com/maxgio92/peribolos-syncer)."
syncerSignature = "Autogenerated with [peribolos-syncer](https://github.com/falcosecurity/peribolos-syncer)."
ownersDoc = "https://docs.prow.k8s.io/docs/components/plugins/approve/approvers/#overview"
peribolosConfigFile = "org.yaml"
)
42 changes: 20 additions & 22 deletions cmd/sync/github/sync_github.go
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
/*
Copyright © 2023 maxgio92 [email protected]

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Copyright 2023 The Falco Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package github

Expand All @@ -32,13 +30,13 @@ import (
"k8s.io/test-infra/prow/repoowners"
"sigs.k8s.io/yaml"

syncergit "github.com/maxgio92/peribolos-syncer/internal/git"
syncergithub "github.com/maxgio92/peribolos-syncer/internal/github"
"github.com/maxgio92/peribolos-syncer/internal/output"
"github.com/maxgio92/peribolos-syncer/internal/owners"
"github.com/maxgio92/peribolos-syncer/internal/sync"
orgs "github.com/maxgio92/peribolos-syncer/pkg/peribolos"
"github.com/maxgio92/peribolos-syncer/pkg/pgp"
syncergit "github.com/falcosecurity/peribolos-syncer/internal/git"
syncergithub "github.com/falcosecurity/peribolos-syncer/internal/github"
"github.com/falcosecurity/peribolos-syncer/internal/output"
"github.com/falcosecurity/peribolos-syncer/internal/owners"
"github.com/falcosecurity/peribolos-syncer/internal/sync"
orgs "github.com/falcosecurity/peribolos-syncer/pkg/peribolos"
"github.com/falcosecurity/peribolos-syncer/pkg/pgp"
)

type options struct {
Expand Down
28 changes: 13 additions & 15 deletions cmd/sync/local/constants.go
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
/*
Copyright © 2023 maxgio92 [email protected]

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Copyright 2023 The Falco Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package local

Expand Down
34 changes: 16 additions & 18 deletions cmd/sync/local/sync_local.go
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
/*
Copyright © 2023 maxgio92 [email protected]

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Copyright 2023 The Falco Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package local

Expand All @@ -25,9 +23,9 @@ import (
"k8s.io/test-infra/prow/repoowners"
"sigs.k8s.io/yaml"

"github.com/maxgio92/peribolos-syncer/internal/output"
"github.com/maxgio92/peribolos-syncer/internal/sync"
orgs "github.com/maxgio92/peribolos-syncer/pkg/peribolos"
"github.com/falcosecutity/peribolos-syncer/internal/output"
"github.com/falcosecutity/peribolos-syncer/internal/sync"
orgs "github.com/falcosecutity/peribolos-syncer/pkg/peribolos"
)

type options struct {
Expand Down
32 changes: 15 additions & 17 deletions cmd/sync/sync.go
Original file line number Diff line number Diff line change
@@ -1,26 +1,24 @@
/*
Copyright © 2023 maxgio92 [email protected]

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Copyright 2023 The Falco Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package sync

import (
"github.com/maxgio92/peribolos-syncer/cmd/sync/github"
"github.com/spf13/cobra"

"github.com/maxgio92/peribolos-syncer/cmd/sync/local"
"github.com/falcosecurity/peribolos-syncer/cmd/sync/github"
"github.com/falcosecurity/peribolos-syncer/cmd/sync/local"
)

// New returns a new root command.
Expand Down
30 changes: 14 additions & 16 deletions cmd/version/version.go
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
/*
Copyright © 2023 maxgio92 [email protected]

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Copyright 2023 The Falco Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package version

Expand All @@ -22,7 +20,7 @@ import (

"github.com/spf13/cobra"

"github.com/maxgio92/peribolos-syncer/internal/output"
"github.com/falcosecurity/peribolos-syncer/internal/output"
)

var (
Expand Down
28 changes: 13 additions & 15 deletions cmd/version/version_test.go
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
/*
Copyright © 2023 maxgio92 [email protected]

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Copyright 2023 The Falco Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package version

Expand Down
Loading
Loading