Skip to content

Commit bfc765b

Browse files
committed
fix: add missing parameter to test
1 parent 73ea136 commit bfc765b

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
uses: goreleaser/goreleaser-action@v6
3131
with:
3232
distribution: goreleaser
33-
version: latest
33+
version: v2
3434
args: release --clean
3535
env:
3636
HOMEBREW_TOKEN: ${{ secrets.HOMEBREW_TOKEN }}

internal/config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ type Profile struct {
3535
Push map[string]any `yaml:"push,omitempty"`
3636
Rebase map[string]any `yaml:"rebase,omitempty"`
3737
Rerere map[string]any `yaml:"rerere,omitempty"`
38-
Pager map[string]any `yaml:"pager,omitempty"`
38+
Pager map[string]any `yaml:"pager,omitempty"`
3939
Tag map[string]any `yaml:"tag,omitempty"`
4040
URL []URLConfig `yaml:"url,omitempty"`
4141
User UserConfig `yaml:"user,omitempty"`

internal/config/sections_test.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,7 @@ func TestConfigSections(t *testing.T) {
262262
"gpg": true,
263263
"pull": true,
264264
"rerere": true,
265+
"pager": true,
265266
"column": true,
266267
"branch": true,
267268
"init": true,

0 commit comments

Comments
 (0)