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 bdac80c commit 71ed8dfCopy full SHA for 71ed8df
actions/sequester/ImportIssues/Program.cs
@@ -104,10 +104,8 @@ private static async Task<QuestGitHubService> CreateService(ImportOptions option
104
{
105
Console.WriteLine("Warning: Imported work items won't be assigned based on GitHub assignee.");
106
}
107
- bool useBearerToken = (options.ApiKeys.QuestAccessToken is not null);
108
- string? token = useBearerToken ?
109
- options.ApiKeys.QuestAccessToken :
110
- options.ApiKeys.QuestKey;
+ string? token = options.ApiKeys.QuestAccessToken
+ ?? options.ApiKeys.QuestKey;
111
112
if (string.IsNullOrWhiteSpace(token))
113
0 commit comments