Skip to content

Commit 2b628b5

Browse files
authored
refactor!: move flow to the flowexec org (#264)
1 parent 95ba4c2 commit 2b628b5

File tree

150 files changed

+419
-419
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

150 files changed

+419
-419
lines changed

.execs/container.flow

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ executables:
1212
default: docker
1313
flag: builder
1414
- envKey: IMAGE_REPO
15-
default: jahvon/flow
15+
default: flowexec/flow
1616
flag: repo
1717
- envKey: IMAGE_TAG
1818
default: latest
@@ -36,7 +36,7 @@ executables:
3636
default: docker
3737
flag: builder
3838
- envKey: IMAGE_REPO
39-
default: jahvon/flow
39+
default: flowexec/flow
4040
flag: repo
4141
- envKey: IMAGE_TAG
4242
default: latest
@@ -72,7 +72,7 @@ executables:
7272
default: docker
7373
flag: builder
7474
- envKey: IMAGE_REPO
75-
default: jahvon/flow
75+
default: flowexec/flow
7676
flag: repo
7777
- envKey: IMAGE_TAG
7878
default: latest

.github/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Contributions are welcome!
44

5-
Looking for a place to start? Check out the [issues](https://github.com/jahvon/flow/issues) for ideas. Be
5+
Looking for a place to start? Check out the [issues](https://github.com/flowexec/flow/issues) for ideas. Be
66
sure to read the contribution guidelines below!
77

88
## How We Develop
@@ -19,7 +19,7 @@ By participating in this project, you agree to abide our [code of conduct](CODE_
1919
We use GitHub issues to track public bugs and feature requests. Please fill out as much as you can in the issue template,
2020
and provide as much additional context as possible.
2121

22-
When creating an issue, add any [labels](https://github.com/jahvon/flow/labels) that may be relevant.
22+
When creating an issue, add any [labels](https://github.com/flowexec/flow/labels) that may be relevant.
2323
The `triage` label will be added automatically and will be removed once the issue has been reviewed by a maintainer.
2424

2525
### Submitting Pull Requests

.goreleaser.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ builds:
2121
mod_timestamp: '{{ .CommitTimestamp }}'
2222
ldflags: >-
2323
-s -w
24-
-X "github.com/jahvon/flow/cmd/internal/version.gitCommit={{ .Commit }}"
25-
-X "github.com/jahvon/flow/cmd/internal/version.version={{ .Version }}"
26-
-X "github.com/jahvon/flow/cmd/internal/version.buildDate={{ .Date }}"
24+
-X "github.com/flowexec/flow/cmd/internal/version.gitCommit={{ .Commit }}"
25+
-X "github.com/flowexec/flow/cmd/internal/version.version={{ .Version }}"
26+
-X "github.com/flowexec/flow/cmd/internal/version.buildDate={{ .Date }}"
2727
2828
gomod:
2929
proxy: false
@@ -66,29 +66,29 @@ homebrew_casks:
6666
6767
dockers:
6868
- image_templates:
69-
- "ghcr.io/jahvon/flow:{{ .Tag }}-amd64"
69+
- "ghcr.io/flowexec/flow:{{ .Tag }}-amd64"
7070
use: buildx
7171
build_flag_templates:
7272
- "--pull"
7373
- "--platform=linux/amd64"
7474
goarch: amd64
7575
- image_templates:
76-
- "ghcr.io/jahvon/flow:{{ .Tag }}-arm64"
76+
- "ghcr.io/flowexec/flow:{{ .Tag }}-arm64"
7777
use: buildx
7878
build_flag_templates:
7979
- "--pull"
8080
- "--platform=linux/arm64"
8181
goarch: arm64
8282

8383
docker_manifests:
84-
- name_template: "ghcr.io/jahvon/flow:{{ .Tag }}"
84+
- name_template: "ghcr.io/flowexec/flow:{{ .Tag }}"
8585
image_templates:
86-
- "ghcr.io/jahvon/flow:{{ .Tag }}-amd64"
87-
- "ghcr.io/jahvon/flow:{{ .Tag }}-arm64"
88-
- name_template: "ghcr.io/jahvon/flow:latest"
86+
- "ghcr.io/flowexec/flow:{{ .Tag }}-amd64"
87+
- "ghcr.io/flowexec/flow:{{ .Tag }}-arm64"
88+
- name_template: "ghcr.io/flowexec/flow:latest"
8989
image_templates:
90-
- "ghcr.io/jahvon/flow:{{ .Tag }}-amd64"
91-
- "ghcr.io/jahvon/flow:{{ .Tag }}-arm64"
90+
- "ghcr.io/flowexec/flow:{{ .Tag }}-amd64"
91+
- "ghcr.io/flowexec/flow:{{ .Tag }}-arm64"
9292

9393
changelog:
9494
sort: asc

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ENV DISABLE_FLOW_INTERACTIVE="true"
44

55
# TODO: replace with examples repo
66
ENV WORKSPACE="flow"
7-
ENV REPO="https://github.com/jahvon/flow.git"
7+
ENV REPO="https://github.com/flowexec/flow.git"
88
ENV BRANCH=""
99

1010
WORKDIR /workspaces

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<br>
44

55
<p align="center">
6-
<a href="https://img.shields.io/github/v/release/jahvon/flow"><img src="https://img.shields.io/github/v/release/jahvon/flow" alt="GitHub release"></a>
7-
<a href="https://pkg.go.dev/github.com/jahvon/flow"><img src="https://pkg.go.dev/badge/github.com/jahvon/flow.svg" alt="Go Reference"></a>
6+
<a href="https://img.shields.io/github/v/release/flowexec/flow"><img src="https://img.shields.io/github/v/release/flowexec/flow" alt="GitHub release"></a>
7+
<a href="https://pkg.go.dev/github.com/flowexec/flow"><img src="https://pkg.go.dev/badge/github.com/flowexec/flow.svg" alt="Go Reference"></a>
88
</p>
99

1010
<p align="center">

cmd/internal/browse.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ import (
66

77
"github.com/spf13/cobra"
88

9-
"github.com/jahvon/flow/cmd/internal/flags"
10-
"github.com/jahvon/flow/internal/cache"
11-
"github.com/jahvon/flow/internal/context"
12-
"github.com/jahvon/flow/internal/io"
13-
execIO "github.com/jahvon/flow/internal/io/executable"
14-
"github.com/jahvon/flow/internal/io/library"
15-
"github.com/jahvon/flow/types/executable"
9+
"github.com/flowexec/flow/cmd/internal/flags"
10+
"github.com/flowexec/flow/internal/cache"
11+
"github.com/flowexec/flow/internal/context"
12+
"github.com/flowexec/flow/internal/io"
13+
execIO "github.com/flowexec/flow/internal/io/executable"
14+
"github.com/flowexec/flow/internal/io/library"
15+
"github.com/flowexec/flow/types/executable"
1616
)
1717

1818
func RegisterBrowseCmd(ctx *context.Context, rootCmd *cobra.Command) {

cmd/internal/cache.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ import (
77
"github.com/flowexec/tuikit/views"
88
"github.com/spf13/cobra"
99

10-
"github.com/jahvon/flow/cmd/internal/flags"
11-
"github.com/jahvon/flow/internal/context"
12-
"github.com/jahvon/flow/internal/io"
13-
cacheIO "github.com/jahvon/flow/internal/io/cache"
14-
"github.com/jahvon/flow/internal/services/store"
10+
"github.com/flowexec/flow/cmd/internal/flags"
11+
"github.com/flowexec/flow/internal/context"
12+
"github.com/flowexec/flow/internal/io"
13+
cacheIO "github.com/flowexec/flow/internal/io/cache"
14+
"github.com/flowexec/flow/internal/services/store"
1515
)
1616

1717
func RegisterCacheCmd(ctx *context.Context, rootCmd *cobra.Command) {

cmd/internal/config.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ import (
1111
"github.com/pkg/errors"
1212
"github.com/spf13/cobra"
1313

14-
"github.com/jahvon/flow/cmd/internal/flags"
15-
"github.com/jahvon/flow/internal/context"
16-
"github.com/jahvon/flow/internal/filesystem"
17-
"github.com/jahvon/flow/internal/io"
18-
configIO "github.com/jahvon/flow/internal/io/config"
19-
"github.com/jahvon/flow/types/config"
14+
"github.com/flowexec/flow/cmd/internal/flags"
15+
"github.com/flowexec/flow/internal/context"
16+
"github.com/flowexec/flow/internal/filesystem"
17+
"github.com/flowexec/flow/internal/io"
18+
configIO "github.com/flowexec/flow/internal/io/config"
19+
"github.com/flowexec/flow/types/config"
2020
)
2121

2222
func RegisterConfigCmd(ctx *context.Context, rootCmd *cobra.Command) {

cmd/internal/exec.go

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,23 @@ import (
1212
"github.com/gen2brain/beeep"
1313
"github.com/spf13/cobra"
1414

15-
"github.com/jahvon/flow/cmd/internal/flags"
16-
"github.com/jahvon/flow/internal/cache"
17-
"github.com/jahvon/flow/internal/context"
18-
"github.com/jahvon/flow/internal/io"
19-
"github.com/jahvon/flow/internal/runner"
20-
"github.com/jahvon/flow/internal/runner/engine"
21-
"github.com/jahvon/flow/internal/runner/exec"
22-
"github.com/jahvon/flow/internal/runner/launch"
23-
"github.com/jahvon/flow/internal/runner/parallel"
24-
"github.com/jahvon/flow/internal/runner/render"
25-
"github.com/jahvon/flow/internal/runner/request"
26-
"github.com/jahvon/flow/internal/runner/serial"
27-
"github.com/jahvon/flow/internal/services/store"
28-
argUtils "github.com/jahvon/flow/internal/utils/args"
29-
"github.com/jahvon/flow/internal/vault"
30-
vaultV2 "github.com/jahvon/flow/internal/vault/v2"
31-
"github.com/jahvon/flow/types/executable"
15+
"github.com/flowexec/flow/cmd/internal/flags"
16+
"github.com/flowexec/flow/internal/cache"
17+
"github.com/flowexec/flow/internal/context"
18+
"github.com/flowexec/flow/internal/io"
19+
"github.com/flowexec/flow/internal/runner"
20+
"github.com/flowexec/flow/internal/runner/engine"
21+
"github.com/flowexec/flow/internal/runner/exec"
22+
"github.com/flowexec/flow/internal/runner/launch"
23+
"github.com/flowexec/flow/internal/runner/parallel"
24+
"github.com/flowexec/flow/internal/runner/render"
25+
"github.com/flowexec/flow/internal/runner/request"
26+
"github.com/flowexec/flow/internal/runner/serial"
27+
"github.com/flowexec/flow/internal/services/store"
28+
argUtils "github.com/flowexec/flow/internal/utils/args"
29+
"github.com/flowexec/flow/internal/vault"
30+
vaultV2 "github.com/flowexec/flow/internal/vault/v2"
31+
"github.com/flowexec/flow/types/executable"
3232
)
3333

3434
func RegisterExecCmd(ctx *context.Context, rootCmd *cobra.Command) {

cmd/internal/flags/helpers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"github.com/spf13/cobra"
88
"github.com/spf13/pflag"
99

10-
"github.com/jahvon/flow/internal/context"
10+
"github.com/flowexec/flow/internal/context"
1111
)
1212

1313
//nolint:errcheck

0 commit comments

Comments
 (0)