fixes issue where case statement for bitbucket cloud logic was never getting into (#3147)

This commit is contained in:
Eoin McAfee 2021-09-23 08:47:47 +01:00 committed by GitHub
parent 97ff309f4a
commit c1a5f264c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,6 +16,7 @@ package commit
import (
"context"
"github.com/drone/drone/core"
"github.com/drone/go-scm/scm"
)
@ -78,8 +79,8 @@ func (s *service) FindRef(ctx context.Context, user *core.User, repo, ref string
})
switch s.client.Driver {
case scm.DriverBitbucket:
case scm.DriverStash:
case scm.DriverBitbucket,
scm.DriverStash:
ref = scm.TrimRef(ref)
branch, _, err := s.client.Git.FindBranch(ctx, repo, ref) // wont work for a Tag
if err != nil {