Skip to content

Commit 88be1f8

Browse files
bors[bot]abhinav
andauthored
Merge #22
22: Update import path r=abhinav a=abhinav Changes the import path of the repository to match its new home at github.com/pulumi/go-change. Co-authored-by: Abhinav Gupta <[email protected]>
2 parents ad2359d + 2f941e5 commit 88be1f8

File tree

12 files changed

+16
-13
lines changed

12 files changed

+16
-13
lines changed

.github/scripts/get-changelog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ fi
2727

2828
>&2 echo "::debug::Merge base ${MERGE_BASE}"
2929

30-
go run github.com/aaronfriel/go-change render --filter-since-commit "${MERGE_BASE}" "${@}"
30+
go run github.com/pulumi/go-change render --filter-since-commit "${MERGE_BASE}" "${@}"

.github/workflows/release-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
6161
# Update go module dependencies
6262
pushd ./pkg/test
63-
go get -u "github.com/aaronfriel/go-change@v${VERSION}"
63+
go get -u "github.com/pulumi/go-change@v${VERSION}"
6464
go mod tidy
6565
git add go.mod go.sum
6666
popd
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
changes:
2+
- type: chore
3+
description: Change import path to github.com/pulumi/go-change.

cmd/cli_util.go

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

7-
"github.com/aaronfriel/go-change/internal/changelog"
87
"github.com/erikgeiser/promptkit/selection"
98
"github.com/erikgeiser/promptkit/textinput"
109
"github.com/muesli/termenv"
10+
"github.com/pulumi/go-change/internal/changelog"
1111
)
1212

1313
func textPrompt(textPrompt string, textPlaceholder string, textValue string) (string, error) {

cmd/create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ import (
2121
"sort"
2222
"time"
2323

24-
"github.com/aaronfriel/go-change/internal/changelog"
2524
"github.com/goccy/go-yaml"
2625
"github.com/gosimple/slug"
26+
"github.com/pulumi/go-change/internal/changelog"
2727
"github.com/spf13/cobra"
2828

2929
"github.com/erikgeiser/promptkit/selection"

cmd/render.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ import (
2424
"strings"
2525
"time"
2626

27-
"github.com/aaronfriel/go-change/internal/changelog"
2827
"github.com/goccy/go-yaml"
2928
"github.com/google/go-github/v47/github"
29+
"github.com/pulumi/go-change/internal/changelog"
3030
"github.com/spf13/cobra"
3131
)
3232

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/aaronfriel/go-change
1+
module github.com/pulumi/go-change
22

33
go 1.19
44

internal/changelog/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ type Config struct {
1616
// Scopes is a map of valid scopes to subscopes
1717
Scopes ConfigScopes `yaml:"scopes"`
1818

19-
// GitHubRepository, e.g.: aaronfriel/go-change
19+
// GitHubRepository, e.g.: pulumi/go-change
2020
GitHubRepository GitHubRepository `yaml:"github,omitempty"`
2121

2222
// Template is the template to use for rendering the changelog.

internal/changelog/config_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ types:
1818
scopes:
1919
foo: [bar, baz, thwomp]
2020
quux: []
21-
github: aaronfriel/go-change
21+
github: pulumi/go-change
2222
`
2323
config := MustParseConfig(t, []byte(strings.TrimSpace(testConfigText)))
2424
assert.ElementsMatch(t, config.Types.Keys(), []string{"feat", "fix", "chore"})
@@ -42,7 +42,7 @@ scopes:
4242
- baz
4343
- thwomp
4444
quux: []
45-
github: aaronfriel/go-change
45+
github: pulumi/go-change
4646
template:
4747
template: null
4848
`)

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package main
22

3-
import cmd "github.com/aaronfriel/go-change/cmd"
3+
import cmd "github.com/pulumi/go-change/cmd"
44

55
func main() {
66
cmd.Execute()

0 commit comments

Comments
 (0)