Skip to content

Commit adf7f7c

Browse files
authored
refactor: move supporting repos to flowexec org (#259)
1 parent b59e7ea commit adf7f7c

Some content is hidden

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

73 files changed

+119
-119
lines changed

.github/workflows/ci.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: actions/setup-go@v5
2323
with:
2424
go-version: "^1.24"
25-
- uses: jahvon/flow-action@v1.0.0-beta1
25+
- uses: flowexec/action@v1
2626
with:
2727
executable: 'lint go --param CI=true'
2828
timeout: '5m'
@@ -41,7 +41,7 @@ jobs:
4141
uses: actions/setup-go@v5
4242
with:
4343
go-version: "^1.24"
44-
- uses: jahvon/flow-action@v1.0.0-beta1
44+
- uses: flowexec/action@v1
4545
with:
4646
executable: 'test unit --param CI=true'
4747
timeout: '5m'
@@ -61,7 +61,7 @@ jobs:
6161
uses: actions/setup-go@v5
6262
with:
6363
go-version: "^1.24"
64-
- uses: jahvon/flow-action@v1.0.0-beta1
64+
- uses: flowexec/action@v1
6565
with:
6666
executable: 'test e2e --param CI=true'
6767
timeout: '10m'
@@ -91,7 +91,7 @@ jobs:
9191
uses: actions/download-artifact@v4
9292
with:
9393
name: e2e-coverage
94-
- uses: jahvon/flow-action@v1.0.0-beta1
94+
- uses: flowexec/action@v1
9595
with:
9696
executable: 'transform coverage'
9797
timeout: '5m'
@@ -116,13 +116,13 @@ jobs:
116116
go-version: "^1.24"
117117
- name: Install mockgen
118118
run: go install go.uber.org/mock/[email protected]
119-
- uses: jahvon/flow-action@v1.0.0-beta1
119+
- uses: flowexec/action@v1
120120
with:
121121
executable: 'generate'
122122
timeout: '10m'
123123
flow-version: 'main'
124124
- name: Check for uncommitted changes
125-
uses: jahvon/flow-action@v1.0.0-beta1
125+
uses: flowexec/action@v1
126126
with:
127127
executable: 'validate generated'
128128
timeout: '2m'
@@ -139,12 +139,12 @@ jobs:
139139
uses: actions/setup-go@v5
140140
with:
141141
go-version: "^1.24"
142-
- uses: jahvon/flow-action@v1.0.0-beta1
142+
- uses: flowexec/action@v1
143143
with:
144144
executable: 'build binary'
145145
flow-version: 'main'
146146
timeout: '10m'
147-
- uses: jahvon/flow-action@v1.0.0-beta1
147+
- uses: flowexec/action@v1
148148
with:
149149
executable: 'test binary'
150150
flow-version: 'main'
@@ -158,7 +158,7 @@ jobs:
158158
uses: actions/setup-go@v5
159159
with:
160160
go-version: "^1.24"
161-
- uses: jahvon/flow-action@v1.0.0-beta1
161+
- uses: flowexec/action@v1
162162
with:
163163
executable: 'scan security'
164164
timeout: '10m'

.github/workflows/container.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Checkout repository
2222
uses: actions/checkout@v4
2323
- name: Test container build
24-
uses: jahvon/flow-action@v1.0.0-beta1
24+
uses: flowexec/action@v1
2525
with:
2626
executable: 'build container'
2727
timeout: '20m'

.goreleaser.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ homebrew_casks:
4848
homepage: https://flowexec.io
4949
license: Apache-2.0
5050
repository:
51-
owner: jahvon
51+
owner: flowexec
5252
name: homebrew-tap
5353
token: "{{ .Env.HOMEBREW_FLOW_GITHUB_TOKEN }}"
5454
completions:

cmd/internal/cache.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"strings"
66

7-
"github.com/jahvon/tuikit/views"
7+
"github.com/flowexec/tuikit/views"
88
"github.com/spf13/cobra"
99

1010
"github.com/jahvon/flow/cmd/internal/flags"

cmd/internal/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"strings"
77
"time"
88

9-
tuikitIO "github.com/jahvon/tuikit/io"
10-
"github.com/jahvon/tuikit/views"
9+
tuikitIO "github.com/flowexec/tuikit/io"
10+
"github.com/flowexec/tuikit/views"
1111
"github.com/pkg/errors"
1212
"github.com/spf13/cobra"
1313

cmd/internal/exec.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
"strings"
88
"time"
99

10+
tuikitIO "github.com/flowexec/tuikit/io"
11+
"github.com/flowexec/tuikit/views"
1012
"github.com/gen2brain/beeep"
11-
tuikitIO "github.com/jahvon/tuikit/io"
12-
"github.com/jahvon/tuikit/views"
1313
"github.com/spf13/cobra"
1414

1515
"github.com/jahvon/flow/cmd/internal/flags"

cmd/internal/helpers.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"os"
55
"strconv"
66

7-
"github.com/jahvon/tuikit"
7+
"github.com/flowexec/tuikit"
88
"github.com/spf13/cobra"
99

1010
"github.com/jahvon/flow/cmd/internal/flags"

cmd/internal/logs.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package internal
33
import (
44
"fmt"
55

6-
tuikitIO "github.com/jahvon/tuikit/io"
7-
"github.com/jahvon/tuikit/views"
6+
tuikitIO "github.com/flowexec/tuikit/io"
7+
"github.com/flowexec/tuikit/views"
88
"github.com/spf13/cobra"
99

1010
"github.com/jahvon/flow/cmd/internal/flags"

cmd/internal/secret.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"strings"
77

88
"github.com/atotto/clipboard"
9-
"github.com/jahvon/tuikit/views"
9+
"github.com/flowexec/tuikit/views"
1010
"github.com/spf13/cobra"
1111

1212
"github.com/jahvon/flow/cmd/internal/flags"

cmd/internal/vault.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55
"strconv"
66
"strings"
77

8-
io2 "github.com/jahvon/tuikit/io"
9-
"github.com/jahvon/tuikit/views"
10-
extvault "github.com/jahvon/vault"
8+
io2 "github.com/flowexec/tuikit/io"
9+
"github.com/flowexec/tuikit/views"
10+
extvault "github.com/flowexec/vault"
1111
"github.com/spf13/cobra"
1212
"golang.org/x/exp/maps"
1313

0 commit comments

Comments
 (0)