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