Skip to content

Commit 55dc4a0

Browse files
authored
Merge branch 'main' into dependabot/github_actions/goreleaser/goreleaser-action-7
2 parents 7c9d5be + d15dd34 commit 55dc4a0

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
-
3535
name: Import GPG key
3636
id: import_gpg
37-
uses: crazy-max/ghaction-import-gpg@v6.3.0
37+
uses: crazy-max/ghaction-import-gpg@v7.0.0
3838
with:
3939
# These secrets will need to be configured for the repository:
4040
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}

cmd/delete-all.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ import (
2424

2525
func NewDeleteAllCommand(parentCmd *cobra.Command) func() {
2626

27-
var pageLength uint16 = 25
27+
var pageLength uint16 = 100
2828

2929
resetFunc := func() {
30-
pageLength = 25
30+
pageLength = 100
3131
}
3232

3333
var deleteAll = &cobra.Command{

external/id/idable_attributes.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package id
22

33
type IdableAttributes struct {
4-
Id string `yaml:"id"`
5-
Slug string `yaml:"slug,omitempty"`
6-
Sku string `yaml:"sku,omitempty"`
7-
Code string `yaml:"code,omitempty"`
8-
ExternalRef string `yaml:"external_ref,omitempty"`
4+
Id string `yaml:"id" json:"id"`
5+
Slug string `yaml:"slug,omitempty" json:"slug,omitempty"`
6+
Sku string `yaml:"sku,omitempty" json:"sku,omitempty"`
7+
Code string `yaml:"code,omitempty" json:"code,omitempty"`
8+
ExternalRef string `yaml:"external_ref,omitempty" json:"external_ref,omitempty"`
99
}

0 commit comments

Comments
 (0)