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