Skip to content

Commit a04fd9e

Browse files
committed
Add GIF showcase
1 parent ed248bc commit a04fd9e

File tree

10 files changed

+40
-18
lines changed

10 files changed

+40
-18
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
```ruby
2-
gh extension install github.com/gitcheasy/gh-codeowners
2+
gh extension install github.com/gitangle/gh-codeowners
33
```
44

55
<p align="center">
6-
<strong>✨ Oversee all your CODEOWNERS needs</strong>
6+
<strong>✨ An all-in-one solution for your CODEOWNERS needs</strong>
77
</p>
88

99
GitHub CLI extension designed to simplify managing and validating CODEOWNERS files directly from your terminal or CI environment.
1010

11-
11+
![validate](./docs/assets/validate.gif)
1212

1313
Like the idea? Give a GitHub star ⭐!
1414

@@ -18,7 +18,7 @@ Like the idea? Give a GitHub star ⭐!
1818
To install the `codeowners` CLI extension, run:
1919

2020
```sh
21-
gh extension install github.com/gitcheasy/gh-codeowners
21+
gh extension install github.com/gitangle/gh-codeowners
2222
```
2323

2424
Navigate to your repository and run:
@@ -50,4 +50,4 @@ The application uses exit status codes to indicate different types of errors:
5050
5151
## Contributing
5252

53-
We welcome contributions from the community! To contribute, please follow the standard GitHub pull request process.
53+
We welcome contributions from the community! To contribute, please follow the standard GitHub pull request process.

cmd/codeowners/cmd/docs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"github.com/spf13/cobra"
55
"github.com/spf13/cobra/doc"
66

7-
"github.com/gitcheasy/gh-codeowners/internal/cli/frontmatter"
7+
"github.com/gitangle/gh-codeowners/internal/cli/frontmatter"
88
)
99

1010
const (

cmd/codeowners/cmd/root.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ import (
44
"github.com/spf13/cobra"
55
"go.szostok.io/version/extension"
66

7-
"github.com/gitcheasy/gh-codeowners/internal/cli"
8-
"github.com/gitcheasy/gh-codeowners/internal/heredoc"
7+
"github.com/gitangle/gh-codeowners/internal/cli"
8+
"github.com/gitangle/gh-codeowners/internal/heredoc"
99
)
1010

1111
const (
12-
orgName = "gitcheasy"
12+
orgName = "gitangle"
1313
repoName = "gh-codeowners"
1414
)
1515

cmd/codeowners/cmd/validate.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package cmd
33
import (
44
"github.com/spf13/cobra"
55

6-
"github.com/gitcheasy/gh-codeowners/internal/cli"
7-
"github.com/gitcheasy/gh-codeowners/internal/cli/validate"
8-
"github.com/gitcheasy/gh-codeowners/internal/heredoc"
6+
"github.com/gitangle/gh-codeowners/internal/cli"
7+
"github.com/gitangle/gh-codeowners/internal/cli/validate"
8+
"github.com/gitangle/gh-codeowners/internal/heredoc"
99
)
1010

1111
// NewValidate returns a cobra.Command for logging into a Botkube Cloud.

cmd/codeowners/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"os"
55

6-
"github.com/gitcheasy/gh-codeowners/cmd/codeowners/cmd"
6+
"github.com/gitangle/gh-codeowners/cmd/codeowners/cmd"
77
)
88

99
func main() {

docs/assets/validate.gif

188 KB
Loading

docs/assets/validate.tape

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Output validate.gif
2+
3+
Set Margin 5
4+
Set PlaybackSpeed 0.25
5+
Set Padding 5
6+
Set FontSize 20
7+
Set BorderRadius 15
8+
Set CursorBlink false
9+
Set WindowBar Colorful
10+
11+
Set Width 1420
12+
Set Height 1120
13+
14+
Env PROMPT " ▲ "
15+
16+
Set Shell zsh
17+
Sleep 1s
18+
Type@100ms "gh codeowners validate --owner asyncapi --all"
19+
Enter
20+
Sleep 0.5s
21+
Type "# Stay tuned for more! 🚀"
22+
Sleep 5s
23+

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/gitcheasy/gh-codeowners
1+
module github.com/gitangle/gh-codeowners
22

33
go 1.21.6
44

internal/cli/validate/validate.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77

88
"github.com/cli/go-gh/v2/pkg/repository"
99

10-
"github.com/gitcheasy/gh-codeowners/internal/client"
11-
"github.com/gitcheasy/gh-codeowners/internal/issues"
12-
"github.com/gitcheasy/gh-codeowners/internal/stylex"
10+
"github.com/gitangle/gh-codeowners/internal/client"
11+
"github.com/gitangle/gh-codeowners/internal/issues"
12+
"github.com/gitangle/gh-codeowners/internal/stylex"
1313
)
1414

1515
var singleRepoNotSupportedMessage = fmt.Sprintf("Single repository lookup is not yet supported. %s", stylex.Underline("Please use '--all'."))

internal/issues/printer.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ func (p *Printer) PrintInvalidOwners(issues map[string][]string, organization st
5454
fmt.Fprintln(&out, i)
5555
fmt.Fprintln(&out, "```")
5656
}
57-
fmt.Fprintln(&out, "----")
5857
fmt.Fprintln(&out, "")
5958
}
6059

0 commit comments

Comments
 (0)