diff --git a/pkg/cli/pr_command.go b/pkg/cli/pr_command.go index c941ea2f0fb..3a6b60c6147 100644 --- a/pkg/cli/pr_command.go +++ b/pkg/cli/pr_command.go @@ -98,6 +98,7 @@ The command will: } addRepoFlag(cmd) + cmd.Flags().BoolP("verbose", "v", false, "Enable verbose output") return cmd } diff --git a/pkg/workflow/action_pins_test.go b/pkg/workflow/action_pins_test.go index 91ef2797065..123ad9d88b9 100644 --- a/pkg/workflow/action_pins_test.go +++ b/pkg/workflow/action_pins_test.go @@ -297,9 +297,9 @@ func TestApplyActionPinToStep(t *testing.T) { func TestGetActionPinsSorting(t *testing.T) { pins := getActionPins() - // Verify we got all the pins (37 as of February 2026) - if len(pins) != 37 { - t.Errorf("getActionPins() returned %d pins, expected 37", len(pins)) + // Verify we got all the pins (38 as of February 2026) + if len(pins) != 38 { + t.Errorf("getActionPins() returned %d pins, expected 38", len(pins)) } // Verify they are sorted by version (descending) then by repository name (ascending)