Skip to content

Commit

Permalink
chore: update to aevea naming
Browse files Browse the repository at this point in the history
  • Loading branch information
fallion committed Apr 26, 2020
1 parent 20524f7 commit 4038392
Show file tree
Hide file tree
Showing 34 changed files with 105 additions and 93 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,17 @@ jobs:
uses: actions/checkout@v1

- name: Kaniko build
uses: outillage/kaniko-action@master
uses: aevea/kaniko-action@master
with:
image: aevea/release-notary
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
cache: true
cache_registry: aevea/cache
strip_tag_prefix: v

- name: Deprecated Outillage builder
uses: aevea/kaniko-action@master
with:
image: outillage/release-notary
username: ${{ secrets.DOCKERHUB_USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ jobs:
uses: actions/checkout@v1

- name: Run Commitsar
uses: docker://outillage/commitsar
uses: docker://aevea/commitsar
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ By participating to this project, you agree to abide our [code of conduct](/CODE

There are also some shared packages in the namespace:

- For Git logic https://github.com/outillage/git
- For Commit logic https://github.com/outillage/quoad
- For Git logic https://github.com/aevea/git
- For Commit logic https://github.com/aevea/quoad

# Pre-Requisites

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Release notary

![Test](https://github.com/outillage/release-notary/workflows/Test/badge.svg)
![GitHub release (latest by date)](https://img.shields.io/github/v/release/outillage/release-notary?style=flat-square)
![GitHub commits since latest release](https://img.shields.io/github/commits-since/outillage/release-notary/latest?style=flat-square)
![Test](https://github.com/aevea/release-notary/workflows/Test/badge.svg)
![GitHub release (latest by date)](https://img.shields.io/github/v/release/aevea/release-notary?style=flat-square)
![GitHub commits since latest release](https://img.shields.io/github/commits-since/aevea/release-notary/latest?style=flat-square)

Release Notary builds release notes using [Conventional Commit](https://www.conventionalcommits.org/) standard and then publishes it to Github. Release notes are appended to any text you already have in your release and therefore will not affect important announcements etc.

Expand Down Expand Up @@ -62,7 +62,7 @@ Slack integration posts release notes into Slack using the `Incoming webhook` in

#### Using Github actions

Should be run only on tags, example is [HERE](https://github.com/outillage/commitsar/blob/master/.github/workflows/release.yml):
Should be run only on tags, example is [HERE](https://github.com/aevea/commitsar/blob/master/.github/workflows/release.yml):

```yml
on:
Expand Down Expand Up @@ -106,7 +106,7 @@ release:
Download and run: **(Substitute v0.0.2 for current version)**
```yml
- curl -L -O https://github.com/outillage/release-notary/releases/download/v0.0.2/release-notary_v0.0.2_Linux_x86_64.tar.gz
- curl -L -O https://github.com/aevea/release-notary/releases/download/v0.0.2/release-notary_v0.0.2_Linux_x86_64.tar.gz
- tar -xzf release-notary_v0.0.2_Linux_x86_64.tar.gz
# Set up any required variables
- export GITHUB_TOKEN=yourtoken
Expand Down
4 changes: 2 additions & 2 deletions cmd/get_commits.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package cmd

import (
history "github.com/outillage/git/v2"
"gopkg.in/src-d/go-git.v4/plumbing"
history "github.com/aevea/git/v2"
"github.com/go-git/go-git/v5/plumbing"
)

func getCommits(repo *history.Git) ([]plumbing.Hash, error) {
Expand Down
2 changes: 1 addition & 1 deletion cmd/get_commits_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package cmd
import (
"testing"

history "github.com/outillage/git/v2"
history "github.com/aevea/git/v2"
"github.com/stretchr/testify/assert"
)

Expand Down
6 changes: 3 additions & 3 deletions cmd/log.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
"log"
"os"

history "github.com/outillage/git/v2"
"github.com/outillage/quoad"
"github.com/outillage/release-notary/internal/text"
history "github.com/aevea/git/v2"
"github.com/aevea/quoad"
"github.com/aevea/release-notary/internal/text"
"github.com/spf13/cobra"
)

Expand Down
12 changes: 6 additions & 6 deletions cmd/publish.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import (
"os"
"strings"

history "github.com/outillage/git/v2"
"github.com/outillage/integrations"
"github.com/outillage/quoad"
"github.com/outillage/release-notary/internal/releaser"
"github.com/outillage/release-notary/internal/slack"
"github.com/outillage/release-notary/internal/text"
history "github.com/aevea/git/v2"
"github.com/aevea/integrations"
"github.com/aevea/quoad"
"github.com/aevea/release-notary/internal/releaser"
"github.com/aevea/release-notary/internal/slack"
"github.com/aevea/release-notary/internal/text"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
Expand Down
14 changes: 5 additions & 9 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,27 +1,23 @@
module github.com/outillage/release-notary
module github.com/aevea/release-notary

go 1.13

require (
github.com/aevea/git/v2 v2.2.0
github.com/aevea/integrations v0.4.0
github.com/aevea/quoad v0.4.0
github.com/go-git/go-git/v5 v5.0.0
github.com/json-iterator/go v1.1.9
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/outillage/git/v2 v2.0.1
github.com/outillage/integrations v0.3.0
github.com/outillage/quoad v0.3.0
github.com/pelletier/go-toml v1.6.0 // indirect
github.com/sergi/go-diff v1.1.0 // indirect
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/cobra v0.0.7
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.6.2
github.com/stretchr/testify v1.5.1
golang.org/x/crypto v0.0.0-20191227163750-53104e6ec876 // indirect
golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553 // indirect
golang.org/x/sys v0.0.0-20200106114638-5f8ca72cd632 // indirect
gopkg.in/ini.v1 v1.51.1 // indirect
gopkg.in/src-d/go-git.v4 v4.13.1
gopkg.in/yaml.v2 v2.2.7 // indirect
)
Loading

0 comments on commit 4038392

Please sign in to comment.