Skip to content

Commit

Permalink
refactor: rename project to falcosecurity/pigeon
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Dellaluce <jasondellaluce@gmail.com>
  • Loading branch information
jasondellaluce committed Feb 22, 2023
1 parent b2fda30 commit b99b2bc
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 11 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Pigeon

[![Latest](https://img.shields.io/github/v/release/FedeDP/Pigeon)](https://github.com/FedeDP/Pigeon/releases/latest)
[![Go Report Card](https://goreportcard.com/badge/github.com/FedeDP/Pigeon)](https://goreportcard.com/report/github.com/FedeDP/Pigeon)
[![CI build](https://github.com/FedeDP/Pigeon/actions/workflows/ci.yaml/badge.svg)](https://github.com/FedeDP/Pigeon/actions/workflows/ci.yaml)
[![Latest](https://img.shields.io/github/v/release/falcosecurity/pigeon)](https://github.com/falcosecurity/pigeon/releases/latest)
[![Go Report Card](https://goreportcard.com/badge/github.com/falcosecurity/pigeon)](https://goreportcard.com/report/github.com/falcosecurity/pigeon)
[![CI build](https://github.com/falcosecurity/pigeon/actions/workflows/ci.yaml/badge.svg)](https://github.com/falcosecurity/pigeon/actions/workflows/ci.yaml)

Script to set github org/repo actions variables and secrets from a config file.

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/FedeDP/Pigeon
module github.com/falcosecurity/pigeon

go 1.17

Expand Down
7 changes: 4 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ package main
import (
"context"
"flag"
"github.com/FedeDP/Pigeon/pkg/pigeon"
"github.com/google/go-github/v50/github"
"os"
"strings"

"github.com/FedeDP/Pigeon/pkg/config"
"github.com/falcosecurity/pigeon/pkg/pigeon"
"github.com/google/go-github/v50/github"

"github.com/falcosecurity/pigeon/pkg/config"
"github.com/sirupsen/logrus"
)

Expand Down
3 changes: 2 additions & 1 deletion pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ package config
import (
"context"
"encoding/base64"
"github.com/FedeDP/Pigeon/pkg/pigeon"
"os"
"strings"

"github.com/falcosecurity/pigeon/pkg/pigeon"

"github.com/google/go-github/v50/github"
"github.com/jamesruan/sodium"
"github.com/sirupsen/logrus"
Expand Down
3 changes: 2 additions & 1 deletion pkg/config/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ package config

import (
"context"
"github.com/FedeDP/Pigeon/pkg/pigeon"
"testing"

"github.com/falcosecurity/pigeon/pkg/pigeon"

"github.com/stretchr/testify/assert"
)

Expand Down
4 changes: 2 additions & 2 deletions release.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Release Process

Our release process is based upon [Github Actions](https://github.com/FedeDP/Pigeon/actions) and [goreleaser](https://github.com/goreleaser/goreleaser) tool for artifacts.
Our release process is based upon [Github Actions](https://github.com/falcosecurity/pigeon/actions) and [goreleaser](https://github.com/goreleaser/goreleaser) tool for artifacts.

When we release we do the following process:

1. We decide together (usually in the #falco channel in [slack](https://kubernetes.slack.com/messages/falco)) what's the next version to tag
2. A person with repository rights does the tag
3. The same person runs commands in their machine following the "Release commands" section below
4. Once the CI has done its job, the tag is live on [Github](https://github.com/falcosecurity/Pigeon/releases) with the artifacts
4. Once the CI has done its job, the tag is live on [Github](https://github.com/falcosecurity/pigeon/releases) with the artifacts

## Release commands

Expand Down

0 comments on commit b99b2bc

Please sign in to comment.