Skip to content

Commit

Permalink
chore: rename to aevea
Browse files Browse the repository at this point in the history
  • Loading branch information
fallion committed Apr 25, 2020
1 parent b9a6bc8 commit d9d102e
Show file tree
Hide file tree
Showing 18 changed files with 81 additions and 93 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ RUN make build/docker

FROM alpine:3.11.6

LABEL repository="https://github.com/outillage/commitsar"
LABEL homepage="https://github.com/outillage/commitsar"
LABEL repository="https://github.com/aevea/commitsar"
LABEL homepage="https://github.com/aevea/commitsar"
LABEL maintainer="Simon Prochazka <[email protected]>"

LABEL com.github.actions.name="Commitsar Action"
Expand Down
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Commitsar

[![Go Report Card](https://goreportcard.com/badge/github.com/outillage/commitsar)](https://goreportcard.com/report/github.com/outillage/commitsar)
![Test](https://github.com/outillage/commitsar/workflows/Test/badge.svg)
![GitHub release (latest by date)](https://img.shields.io/github/v/release/outillage/commitsar?style=flat-square)
![GitHub commits since latest release](https://img.shields.io/github/commits-since/outillage/commitsar/latest?style=flat-square)
[![Go Report Card](https://goreportcard.com/badge/github.com/aevea/commitsar)](https://goreportcard.com/report/github.com/aevea/commitsar)
![Test](https://github.com/aevea/commitsar/workflows/Test/badge.svg)
![GitHub release (latest by date)](https://img.shields.io/github/v/release/aevea/commitsar?style=flat-square)
![GitHub commits since latest release](https://img.shields.io/github/commits-since/aevea/commitsar/latest?style=flat-square)
[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg)](https://conventionalcommits.org)
[![Run on Repl.it](https://repl.it/badge/github/outillage/commitsar)](https://repl.it/github/outillage/commitsar)
[![Run on Repl.it](https://repl.it/badge/github/aevea/commitsar)](https://repl.it/github/aevea/commitsar)

Tool to make sure your commits are compliant with [conventional commits](https://www.conventionalcommits.org). It is aimed mainly at CIs to prevent branches with commits that don't comply. Usage as a pre-commit hook is also under consideration.

Expand All @@ -18,17 +18,17 @@ Tool to make sure your commits are compliant with [conventional commits](https:/

Please check [Documentation](https://commitsar.tech).

**Important: Commitsar currently needs to be run in the same folder as the git repository you want checked, currently no override is provided for setting path to git repo see https://github.com/outillage/commitsar/issues/93**
**Important: Commitsar currently needs to be run in the same folder as the git repository you want checked, currently no override is provided for setting path to git repo see https://github.com/aevea/commitsar/issues/93**

#### Running using https://gobinaries.com/

```sh
curl -sf https://gobinaries.com/outillage/commitsar | sh
curl -sf https://gobinaries.com/aevea/commitsar | sh
```

Or a specific version:
```sh
curl -sf https://gobinaries.com/outillage/commitsar[@VERSION] | sh
curl -sf https://gobinaries.com/aevea/commitsar[@VERSION] | sh
```


Expand All @@ -45,26 +45,26 @@ Run the Commitsar action

```
- name: Commitsar Action
uses: docker://outillage/commitsar
uses: docker://aevea/commitsar
```

##### Example for CircleCI:

```
validate-commits:
docker:
- image: outillage/commitsar
- image: aevea/commitsar
steps:
- checkout
- run: commitsar
```

##### From binary

Adjust for version and distribution. Please check [Releases](https://github.com/outillage/commitsar/releases).
Adjust for version and distribution. Please check [Releases](https://github.com/aevea/commitsar/releases).

```
- curl -L -O https://github.com/outillage/commitsar/releases/download/v0.0.2/commitsar_v0.0.2_Linux_x86_64.tar.gz
- curl -L -O https://github.com/aevea/commitsar/releases/download/v0.0.2/commitsar_v0.0.2_Linux_x86_64.tar.gz
- tar -xzf commitsar_v0.0.2_Linux_x86_64.tar.gz
- ./commitsar
```
Expand Down
14 changes: 5 additions & 9 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
module github.com/outillage/commitsar
module github.com/aevea/commitsar

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/go-openapi/strfmt v0.19.5 // indirect
github.com/jedib0t/go-pretty v4.3.0+incompatible
github.com/logrusorgru/aurora v0.0.0-20200102142835-e9ef32dff381
github.com/mattn/go-runewidth v0.0.9 // 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/sergi/go-diff v1.1.0 // indirect
github.com/spf13/cobra v1.0.0
github.com/stretchr/testify v1.5.1
golang.org/x/crypto v0.0.0-20200221231518-2aa609cf4a9d // indirect
golang.org/x/net v0.0.0-20200222125558-5a598a2470a0 // indirect
golang.org/x/sys v0.0.0-20200223170610-d5e6a3e2c0ae // indirect
gopkg.in/src-d/go-git.v4 v4.13.1
)
Loading

0 comments on commit d9d102e

Please sign in to comment.