Skip to content

Commit

Permalink
Show bugs
Browse files Browse the repository at this point in the history
Signed-off-by: Dominic Cassidy <dominic@koroutine.tech>
  • Loading branch information
Drache93 committed Mar 22, 2022
1 parent 4e33af7 commit efb1d43
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cmd/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Branch name is limited to 255 characters`,

branchName := fmt.Sprintf("%v_%s", story.ID, strcase.ToSnake(name))

fmt.Println("Opening repo at", dir)
fmt.Println("Using repo at", dir)

gitCmds := [][]string{
{"checkout", "-b", branchName},
Expand Down
6 changes: 3 additions & 3 deletions pivotal/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -296,10 +296,10 @@ func (project *Project) GetStoriesTBD(label string) ([]Story, error) {

for _, d := range data {

hasEstimate := d.Estimate != 0
hasEstimate := true

if d.Type == StoryChore {
hasEstimate = true
if d.Type == StoryFeature {
hasEstimate = d.Estimate != 0
}

if d.Type != StoryRelease && hasEstimate {
Expand Down

0 comments on commit efb1d43

Please sign in to comment.