Skip to content

Commit

Permalink
chore: move module to github.com/fermyon
Browse files Browse the repository at this point in the history
Signed-off-by: Thorsten Hans <[email protected]>
  • Loading branch information
ThorstenHans committed Nov 3, 2024
1 parent 58cf847 commit ae95669
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
run: ls -R
- name: pluginify it
run: |
spin pluginify --merge --release-url-base https://github.com/ThorstenHans/spin-github-plugin/releases/download/${{ env.RELEASE_VERSION }}/ >${{ env.PROGRAM_NAME }}.json
spin pluginify --merge --release-url-base https://github.com/fermyon/spin-github-plugin/releases/download/${{ env.RELEASE_VERSION }}/ >${{ env.PROGRAM_NAME }}.json
- name: Display merged manifest
run: cat ${{ env.PROGRAM_NAME }}.json
- name: Archive Combined Manifest
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Spin GitHub Plugin

[![Release](https://github.com/ThorstenHans/spin-gh-plugin/actions/workflows/release.yaml/badge.svg)](https://github.com/ThorstenHans/spin-gh-plugin/actions/workflows/release.yaml)
[![Release](https://github.com/fermyon/spin-gh-plugin/actions/workflows/release.yaml/badge.svg)](https://github.com/fermyon/spin-gh-plugin/actions/workflows/release.yaml)

This is a plugin that generates GitHub Actions for your Spin Apps.

Expand All @@ -20,7 +20,7 @@ spin plugin install gh
The `canary` release of the `gh` represents the most recent commits on `main` and may not be stable, with some features still in progress.

```sh
spin plugins install --url https://github.com/ThorstenHans/spin-gh-plugin/releases/download/canary/gh.json
spin plugins install --url https://github.com/fermyon/spin-gh-plugin/releases/download/canary/gh.json
```

## Install from a local build
Expand Down
4 changes: 2 additions & 2 deletions cmd/gh/create_action.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ package gh
import (
"log"

"github.com/fermyon/spin-gh-plugin/internal/detective"
gh "github.com/fermyon/spin-gh-plugin/internal/github"
"github.com/spf13/cobra"
"github.com/thorstenhans/spin-gh-plugin/internal/detective"
gh "github.com/thorstenhans/spin-gh-plugin/internal/github"
)

type CreateActionOptions struct {
Expand Down
2 changes: 1 addition & 1 deletion cmd/gh/eject.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"log"
"os"

gh "github.com/fermyon/spin-gh-plugin/internal/github"
"github.com/spf13/cobra"
gh "github.com/thorstenhans/spin-gh-plugin/internal/github"
)

var output string
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/thorstenhans/spin-gh-plugin
module github.com/fermyon/spin-gh-plugin

go 1.23.2

Expand Down
2 changes: 1 addition & 1 deletion internal/detective/detective.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"slices"
"strings"

"github.com/thorstenhans/spin-gh-plugin/internal/spinapp"
"github.com/fermyon/spin-gh-plugin/internal/spinapp"
)

var ignoreFolders = []string{"node_modules", "target"}
Expand Down
2 changes: 1 addition & 1 deletion internal/github/github.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"path/filepath"
"text/template"

"github.com/thorstenhans/spin-gh-plugin/internal/spinapp"
"github.com/fermyon/spin-gh-plugin/internal/spinapp"
)

type RenderActionOptions struct {
Expand Down
2 changes: 1 addition & 1 deletion internal/github/templates.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
"strings"

"github.com/thorstenhans/spin-gh-plugin/internal/spinapp"
"github.com/fermyon/spin-gh-plugin/internal/spinapp"
)

//go:embed default_workflow.yaml.tmpl
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"log"

"github.com/thorstenhans/spin-gh-plugin/cmd/gh"
"github.com/fermyon/spin-gh-plugin/cmd/gh"
)

func init() {
Expand Down

0 comments on commit ae95669

Please sign in to comment.