Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/create-github-app-token@v3
id: app-token
with:
client-id: ${{ secrets.DEVSY_GITHUB_CLIENT_ID }}
app-id: ${{ secrets.DEVSY_GITHUB_APP_ID }}
private-key: ${{ secrets.DEVSY_GITHUB_APP_PRIVATE_KEY }}
- uses: googleapis/release-please-action@v4
id: release
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/workflow-approval.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
- uses: actions/create-github-app-token@v3
id: app-token
with:
client-id: ${{ secrets.DEVSY_GITHUB_CLIENT_ID }}
app-id: ${{ secrets.DEVSY_GITHUB_APP_ID }}
private-key: ${{ secrets.DEVSY_GITHUB_APP_PRIVATE_KEY }}
- uses: skevetter/automatic-approve-action@v1
- uses: skevetter/automatic-approve-action@v2
with:
token: ${{ steps.app-token.outputs.token }}
workflows: "commit.yml,lint.yml,pre-commit.yml"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Go library providing shared API types and license definitions for the [Devsy](ht
## Usage

```bash
go get github.com/skevetter/admin-apis
go get github.com/devsy-org/admin-apis
```

## Development
Expand Down
4 changes: 2 additions & 2 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ tasks:
- >-
go run k8s.io/kube-openapi/cmd/openapi-gen@v0.0.0-20260127142750-a19766b6e2d4
--go-header-file ./hack/boilerplate.go.txt
--output-pkg github.com/skevetter/admin-apis/pkg/licenseapi
--output-pkg github.com/devsy-org/admin-apis/pkg/licenseapi
--output-dir ./pkg/licenseapi
--output-file zz_generated.openapi.go
--output-model-name-file zz_generated.model_name.go
github.com/skevetter/admin-apis/pkg/licenseapi
github.com/devsy-org/admin-apis/pkg/licenseapi

check:gen:
desc: Verify generated code is up to date
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/skevetter/admin-apis
module github.com/devsy-org/admin-apis

go 1.25

Expand Down
4 changes: 2 additions & 2 deletions hack/gen-features/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"strings"
"time"

"github.com/skevetter/admin-apis/hack/internal/yamlparser"
"github.com/skevetter/admin-apis/pkg/licenseapi"
"github.com/devsy-org/admin-apis/hack/internal/yamlparser"
"github.com/devsy-org/admin-apis/pkg/licenseapi"
"sigs.k8s.io/yaml"
)

Expand Down
156 changes: 78 additions & 78 deletions pkg/licenseapi/zz_generated.openapi.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pkg/util/features/features.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"maps"

"github.com/skevetter/admin-apis/pkg/licenseapi"
"github.com/devsy-org/admin-apis/pkg/licenseapi"
stripe "github.com/stripe/stripe-go/v81"
stripeclient "github.com/stripe/stripe-go/v81/client"
)
Expand Down
Loading