We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0ae441 commit fc51bc1Copy full SHA for fc51bc1
src/shared/Atlassian.Bitbucket/BitbucketHostProvider.cs
@@ -1,5 +1,6 @@
1
using System;
2
using System.Collections.Generic;
3
+using System.Linq;
4
using System.Net.Http;
5
using System.Threading.Tasks;
6
using Atlassian.Bitbucket.Cloud;
@@ -43,6 +44,10 @@ public bool IsSupported(InputArguments input)
43
44
return false;
45
}
46
47
+ if (input.WwwAuth.Any(x => x.Contains("realm=\"Atlassian Bitbucket\"")))
48
+ return true;
49
+ }
50
+
51
// Split port number and hostname from host input argument
52
if (!input.TryGetHostAndPort(out string hostName, out _))
53
{
0 commit comments