From 60fc90e4ef33dc129e1d839644683c9edd0f0373 Mon Sep 17 00:00:00 2001 From: Alexander Morogov Date: Thu, 19 Aug 2021 16:15:00 +0200 Subject: [PATCH] VCI-128: Fix long live branches list --- Build.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Build.cs b/Build.cs index c5e28ae..b7801fa 100644 --- a/Build.cs +++ b/Build.cs @@ -45,7 +45,7 @@ internal partial class Build : NukeBuild /// - Microsoft VSCode https://nuke.build/vscode private static readonly string[] _moduleContentFolders = { "dist", "Localizations", "Scripts", "Content" }; - private static readonly string[] _sonarLongLiveBranches = { "master", "develop" }; + private static readonly string[] _sonarLongLiveBranches = { "master", "develop", "dev", "main" }; private static readonly HttpClient _httpClient = new HttpClient(); private static int? _exitCode;