Files
tgstation-server/_git_hub_remote_deployment_manager_8cs_source.html

541 lines
115 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=11"/>
<meta name="generator" content="Doxygen 1.9.8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>tgstation-server: src/Tgstation.Server.Host/Components/Deployment/Remote/GitHubRemoteDeploymentManager.cs Source File</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr id="projectrow">
<td id="projectalign">
<div id="projectname">tgstation-server<span id="projectnumber">&#160;6.19.3</span>
</div>
<div id="projectbrief">The /tg/station 13 server suite</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.9.8 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
var searchBox = new SearchBox("searchBox", "search/",'.html');
/* @license-end */
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */
</script>
<div id="main-nav"></div>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:d3d9a9a6595521f9666a5e94cc830dab83b65699&amp;dn=expat.txt MIT */
$(document).ready(function() { init_codefold(0); });
/* @license-end */
</script>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<div id="MSearchResults">
<div class="SRPage">
<div id="SRIndex">
<div id="SRResults"></div>
<div class="SRStatus" id="Loading">Loading...</div>
<div class="SRStatus" id="Searching">Searching...</div>
<div class="SRStatus" id="NoMatches">No Matches</div>
</div>
</div>
</div>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="dir_68267d1309a1af8e8297ef4c3efbcdba.html">src</a></li><li class="navelem"><a class="el" href="dir_34761767c1c3cd212f9d2f80ea0828a8.html">Tgstation.Server.Host</a></li><li class="navelem"><a class="el" href="dir_7a3fd032a1362a6005a1fc9227a8dd86.html">Components</a></li><li class="navelem"><a class="el" href="dir_e2f0549e5ba528b36fd9348e214a8e4f.html">Deployment</a></li><li class="navelem"><a class="el" href="dir_ca83ff898e48bb4d72e7f31470eddcd9.html">Remote</a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="headertitle"><div class="title">GitHubRemoteDeploymentManager.cs</div></div>
</div><!--header-->
<div class="contents">
<a href="_git_hub_remote_deployment_manager_8cs.html">Go to the documentation of this file.</a><div class="fragment"><div class="line"><a id="l00001" name="l00001"></a><span class="lineno"> 1</span><span class="keyword">using </span>System;</div>
<div class="line"><a id="l00002" name="l00002"></a><span class="lineno"> 2</span><span class="keyword">using </span>System.Collections.Concurrent;</div>
<div class="line"><a id="l00003" name="l00003"></a><span class="lineno"> 3</span><span class="keyword">using </span>System.Collections.Generic;</div>
<div class="line"><a id="l00004" name="l00004"></a><span class="lineno"> 4</span><span class="keyword">using </span>System.Collections.ObjectModel;</div>
<div class="line"><a id="l00005" name="l00005"></a><span class="lineno"> 5</span><span class="keyword">using </span>System.Globalization;</div>
<div class="line"><a id="l00006" name="l00006"></a><span class="lineno"> 6</span><span class="keyword">using </span>System.Linq;</div>
<div class="line"><a id="l00007" name="l00007"></a><span class="lineno"> 7</span><span class="keyword">using </span>System.Threading;</div>
<div class="line"><a id="l00008" name="l00008"></a><span class="lineno"> 8</span><span class="keyword">using </span>System.Threading.Tasks;</div>
<div class="line"><a id="l00009" name="l00009"></a><span class="lineno"> 9</span> </div>
<div class="line"><a id="l00010" name="l00010"></a><span class="lineno"> 10</span><span class="keyword">using </span>Microsoft.EntityFrameworkCore;</div>
<div class="line"><a id="l00011" name="l00011"></a><span class="lineno"> 11</span><span class="keyword">using </span>Microsoft.Extensions.Logging;</div>
<div class="line"><a id="l00012" name="l00012"></a><span class="lineno"> 12</span> </div>
<div class="line"><a id="l00013" name="l00013"></a><span class="lineno"> 13</span><span class="keyword">using </span>Octokit;</div>
<div class="line"><a id="l00014" name="l00014"></a><span class="lineno"> 14</span> </div>
<div class="line"><a id="l00015" name="l00015"></a><span class="lineno"> 15</span><span class="keyword">using </span><a class="code hl_namespace" href="namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository.html">Tgstation.Server.Host.Components.Repository</a>;</div>
<div class="line"><a id="l00016" name="l00016"></a><span class="lineno"> 16</span><span class="keyword">using </span><a class="code hl_namespace" href="namespace_tgstation_1_1_server_1_1_host_1_1_database.html">Tgstation.Server.Host.Database</a>;</div>
<div class="line"><a id="l00017" name="l00017"></a><span class="lineno"> 17</span><span class="keyword">using </span><a class="code hl_namespace" href="namespace_tgstation_1_1_server_1_1_host_1_1_models.html">Tgstation.Server.Host.Models</a>;</div>
<div class="line"><a id="l00018" name="l00018"></a><span class="lineno"> 18</span><span class="keyword">using </span><a class="code hl_namespace" href="namespace_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub.html">Tgstation.Server.Host.Utils.GitHub</a>;</div>
<div class="line"><a id="l00019" name="l00019"></a><span class="lineno"> 19</span> </div>
<div class="line"><a id="l00020" name="l00020"></a><span class="lineno"> 20</span><span class="keyword">namespace </span><a class="code hl_namespace" href="namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote.html">Tgstation.Server.Host.Components.Deployment.Remote</a></div>
<div class="line"><a id="l00021" name="l00021"></a><span class="lineno"> 21</span>{</div>
<div class="foldopen" id="foldopen00025" data-start="{" data-end="};">
<div class="line"><a id="l00025" name="l00025"></a><span class="lineno"><a class="line" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html"> 25</a></span> <span class="keyword">sealed</span> <span class="keyword">class </span><a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html">GitHubRemoteDeploymentManager</a> : <a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html">BaseRemoteDeploymentManager</a></div>
<div class="line"><a id="l00026" name="l00026"></a><span class="lineno"> 26</span> {</div>
<div class="line"><a id="l00030" name="l00030"></a><span class="lineno"><a class="line" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a05daf039a3547769d54da9136bbbc22c"> 30</a></span> readonly <a class="code hl_interface" href="interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context_factory.html">IDatabaseContextFactory</a> <a class="code hl_variable" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a05daf039a3547769d54da9136bbbc22c">databaseContextFactory</a>;</div>
<div class="line"><a id="l00031" name="l00031"></a><span class="lineno"> 31</span> </div>
<div class="line"><a id="l00035" name="l00035"></a><span class="lineno"><a class="line" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a0cc2207612ce4acf4e38b326ae6f9d02"> 35</a></span> readonly <a class="code hl_interface" href="interface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_git_hub_service_factory.html">IGitHubServiceFactory</a> <a class="code hl_variable" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a0cc2207612ce4acf4e38b326ae6f9d02">gitHubServiceFactory</a>;</div>
<div class="line"><a id="l00036" name="l00036"></a><span class="lineno"> 36</span> </div>
<div class="foldopen" id="foldopen00045" data-start="{" data-end="}">
<div class="line"><a id="l00045" name="l00045"></a><span class="lineno"><a class="line" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a4d3633c4ac4010ac54b65596d63adf92"> 45</a></span> <span class="keyword">public</span> <a class="code hl_function" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a4d3633c4ac4010ac54b65596d63adf92">GitHubRemoteDeploymentManager</a>(</div>
<div class="line"><a id="l00046" name="l00046"></a><span class="lineno"> 46</span> <a class="code hl_interface" href="interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context_factory.html">IDatabaseContextFactory</a> <a class="code hl_variable" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a05daf039a3547769d54da9136bbbc22c">databaseContextFactory</a>,</div>
<div class="line"><a id="l00047" name="l00047"></a><span class="lineno"> 47</span> <a class="code hl_interface" href="interface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_git_hub_service_factory.html">IGitHubServiceFactory</a> <a class="code hl_variable" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a0cc2207612ce4acf4e38b326ae6f9d02">gitHubServiceFactory</a>,</div>
<div class="line"><a id="l00048" name="l00048"></a><span class="lineno"> 48</span> ILogger&lt;GitHubRemoteDeploymentManager&gt; logger,</div>
<div class="line"><a id="l00049" name="l00049"></a><span class="lineno"> 49</span> Api.Models.Instance metadata,</div>
<div class="line"><a id="l00050" name="l00050"></a><span class="lineno"> 50</span> ConcurrentDictionary&lt;<span class="keywordtype">long</span>, Action&lt;bool&gt;&gt; <a class="code hl_variable" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#aa2822366e4d87047a3c7e04cb7684432">activationCallbacks</a>)</div>
<div class="line"><a id="l00051" name="l00051"></a><span class="lineno"> 51</span> : base(logger, metadata, <a class="code hl_variable" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#aa2822366e4d87047a3c7e04cb7684432">activationCallbacks</a>)</div>
<div class="line"><a id="l00052" name="l00052"></a><span class="lineno"> 52</span> {</div>
<div class="line"><a id="l00053" name="l00053"></a><span class="lineno"> 53</span> this.databaseContextFactory = <a class="code hl_variable" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a05daf039a3547769d54da9136bbbc22c">databaseContextFactory</a> ?? <span class="keywordflow">throw</span> <span class="keyword">new</span> ArgumentNullException(nameof(<a class="code hl_variable" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a05daf039a3547769d54da9136bbbc22c">databaseContextFactory</a>));</div>
<div class="line"><a id="l00054" name="l00054"></a><span class="lineno"> 54</span> this.gitHubServiceFactory = <a class="code hl_variable" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a0cc2207612ce4acf4e38b326ae6f9d02">gitHubServiceFactory</a> ?? <span class="keywordflow">throw</span> <span class="keyword">new</span> ArgumentNullException(nameof(<a class="code hl_variable" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a0cc2207612ce4acf4e38b326ae6f9d02">gitHubServiceFactory</a>));</div>
<div class="line"><a id="l00055" name="l00055"></a><span class="lineno"> 55</span> }</div>
</div>
<div class="line"><a id="l00056" name="l00056"></a><span class="lineno"> 56</span> </div>
<div class="foldopen" id="foldopen00058" data-start="{" data-end="}">
<div class="line"><a id="l00058" name="l00058"></a><span class="lineno"><a class="line" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a6daaca0929dd102bb1f69de7b4bcc5df"> 58</a></span> <span class="keyword">public</span> <span class="keyword">override</span> async ValueTask <a class="code hl_function" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a6daaca0929dd102bb1f69de7b4bcc5df">StartDeployment</a>(</div>
<div class="line"><a id="l00059" name="l00059"></a><span class="lineno"> 59</span> Api.Models.Internal.IGitRemoteInformation remoteInformation,</div>
<div class="line"><a id="l00060" name="l00060"></a><span class="lineno"> 60</span> <a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html">CompileJob</a> compileJob,</div>
<div class="line"><a id="l00061" name="l00061"></a><span class="lineno"> 61</span> CancellationToken cancellationToken)</div>
<div class="line"><a id="l00062" name="l00062"></a><span class="lineno"> 62</span> {</div>
<div class="line"><a id="l00063" name="l00063"></a><span class="lineno"> 63</span> ArgumentNullException.ThrowIfNull(remoteInformation);</div>
<div class="line"><a id="l00064" name="l00064"></a><span class="lineno"> 64</span> ArgumentNullException.ThrowIfNull(compileJob);</div>
<div class="line"><a id="l00065" name="l00065"></a><span class="lineno"> 65</span> </div>
<div class="line"><a id="l00066" name="l00066"></a><span class="lineno"> 66</span> <a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#af5093d05e84f4d23e3ea7f1413e88e40">Logger</a>.LogTrace(<span class="stringliteral">&quot;Starting deployment...&quot;</span>);</div>
<div class="line"><a id="l00067" name="l00067"></a><span class="lineno"> 67</span> </div>
<div class="line"><a id="l00068" name="l00068"></a><span class="lineno"> 68</span> <a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html">RepositorySettings</a>? repositorySettings = <span class="keyword">null</span>;</div>
<div class="line"><a id="l00069" name="l00069"></a><span class="lineno"> 69</span> await <a class="code hl_variable" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a05daf039a3547769d54da9136bbbc22c">databaseContextFactory</a>.<a class="code hl_function" href="interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context_factory.html#a1da664d7237dbec5a6cb9ce04b79ccc1">UseContext</a>(</div>
<div class="line"><a id="l00070" name="l00070"></a><span class="lineno"> 70</span> async databaseContext =&gt;</div>
<div class="line"><a id="l00071" name="l00071"></a><span class="lineno"> 71</span> repositorySettings = await databaseContext</div>
<div class="line"><a id="l00072" name="l00072"></a><span class="lineno"> 72</span> .<a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html">RepositorySettings</a></div>
<div class="line"><a id="l00073" name="l00073"></a><span class="lineno"> 73</span> .Where(x =&gt; x.InstanceId == <a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#a3217b057f1e1bd47bdd167178f257645">Metadata</a>.Id)</div>
<div class="line"><a id="l00074" name="l00074"></a><span class="lineno"> 74</span> .FirstAsync(cancellationToken));</div>
<div class="line"><a id="l00075" name="l00075"></a><span class="lineno"> 75</span> </div>
<div class="line"><a id="l00076" name="l00076"></a><span class="lineno"> 76</span> var instanceAuthenticated = repositorySettings!.<a class="code hl_property" href="class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository_settings.html#ab0bca804385494f141395c333ea81221">AccessToken</a> != <span class="keyword">null</span>;</div>
<div class="line"><a id="l00077" name="l00077"></a><span class="lineno"> 77</span> <a class="code hl_interface" href="interface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_authenticated_git_hub_service.html">IAuthenticatedGitHubService</a>? authenticatedGitHubService;</div>
<div class="line"><a id="l00078" name="l00078"></a><span class="lineno"> 78</span> <a class="code hl_interface" href="interface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_git_hub_service.html">IGitHubService</a>? gitHubService;</div>
<div class="line"><a id="l00079" name="l00079"></a><span class="lineno"> 79</span> <span class="keywordflow">if</span> (instanceAuthenticated)</div>
<div class="line"><a id="l00080" name="l00080"></a><span class="lineno"> 80</span> {</div>
<div class="line"><a id="l00081" name="l00081"></a><span class="lineno"> 81</span> authenticatedGitHubService = await <a class="code hl_variable" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a0cc2207612ce4acf4e38b326ae6f9d02">gitHubServiceFactory</a>.<a class="code hl_function" href="interface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_git_hub_service_factory.html#a93de0a6eeb420eec2ecaa935ebabc7b9">CreateService</a>(</div>
<div class="line"><a id="l00082" name="l00082"></a><span class="lineno"> 82</span> repositorySettings.<a class="code hl_property" href="class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository_settings.html#ab0bca804385494f141395c333ea81221">AccessToken</a>!,</div>
<div class="line"><a id="l00083" name="l00083"></a><span class="lineno"> 83</span> <span class="keyword">new</span> <a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_repository_identifier.html">RepositoryIdentifier</a>(remoteInformation),</div>
<div class="line"><a id="l00084" name="l00084"></a><span class="lineno"> 84</span> cancellationToken);</div>
<div class="line"><a id="l00085" name="l00085"></a><span class="lineno"> 85</span> </div>
<div class="line"><a id="l00086" name="l00086"></a><span class="lineno"> 86</span> <span class="keywordflow">if</span> (authenticatedGitHubService == <span class="keyword">null</span>)</div>
<div class="line"><a id="l00087" name="l00087"></a><span class="lineno"> 87</span> {</div>
<div class="line"><a id="l00088" name="l00088"></a><span class="lineno"> 88</span> <a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#af5093d05e84f4d23e3ea7f1413e88e40">Logger</a>.LogWarning(<span class="stringliteral">&quot;Can&#39;t create GitHub deployment as authentication for repository failed!&quot;</span>);</div>
<div class="line"><a id="l00089" name="l00089"></a><span class="lineno"> 89</span> gitHubService = await <a class="code hl_variable" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a0cc2207612ce4acf4e38b326ae6f9d02">gitHubServiceFactory</a>.<a class="code hl_function" href="interface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_git_hub_service_factory.html#a93de0a6eeb420eec2ecaa935ebabc7b9">CreateService</a>(cancellationToken);</div>
<div class="line"><a id="l00090" name="l00090"></a><span class="lineno"> 90</span> }</div>
<div class="line"><a id="l00091" name="l00091"></a><span class="lineno"> 91</span> <span class="keywordflow">else</span></div>
<div class="line"><a id="l00092" name="l00092"></a><span class="lineno"> 92</span> gitHubService = authenticatedGitHubService;</div>
<div class="line"><a id="l00093" name="l00093"></a><span class="lineno"> 93</span> }</div>
<div class="line"><a id="l00094" name="l00094"></a><span class="lineno"> 94</span> <span class="keywordflow">else</span></div>
<div class="line"><a id="l00095" name="l00095"></a><span class="lineno"> 95</span> {</div>
<div class="line"><a id="l00096" name="l00096"></a><span class="lineno"> 96</span> authenticatedGitHubService = <span class="keyword">null</span>;</div>
<div class="line"><a id="l00097" name="l00097"></a><span class="lineno"> 97</span> gitHubService = await <a class="code hl_variable" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a0cc2207612ce4acf4e38b326ae6f9d02">gitHubServiceFactory</a>.<a class="code hl_function" href="interface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_git_hub_service_factory.html#a93de0a6eeb420eec2ecaa935ebabc7b9">CreateService</a>(cancellationToken);</div>
<div class="line"><a id="l00098" name="l00098"></a><span class="lineno"> 98</span> }</div>
<div class="line"><a id="l00099" name="l00099"></a><span class="lineno"> 99</span> </div>
<div class="line"><a id="l00100" name="l00100"></a><span class="lineno"> 100</span> var repoOwner = remoteInformation.RemoteRepositoryOwner!;</div>
<div class="line"><a id="l00101" name="l00101"></a><span class="lineno"> 101</span> var repoName = remoteInformation.RemoteRepositoryName!;</div>
<div class="line"><a id="l00102" name="l00102"></a><span class="lineno"> 102</span> var repositoryIdTask = gitHubService.<a class="code hl_function" href="interface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_git_hub_service.html#a74b8e7bffa82ab1a72c5e72259b0823e">GetRepositoryId</a>(</div>
<div class="line"><a id="l00103" name="l00103"></a><span class="lineno"> 103</span> repoOwner,</div>
<div class="line"><a id="l00104" name="l00104"></a><span class="lineno"> 104</span> repoName,</div>
<div class="line"><a id="l00105" name="l00105"></a><span class="lineno"> 105</span> cancellationToken);</div>
<div class="line"><a id="l00106" name="l00106"></a><span class="lineno"> 106</span> </div>
<div class="line"><a id="l00107" name="l00107"></a><span class="lineno"> 107</span> <span class="keywordflow">if</span> (!repositorySettings.<a class="code hl_property" href="class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository_settings.html#a0725fe7a401590e54cd730204a64d9d2">CreateGitHubDeployments</a>!.Value)</div>
<div class="line"><a id="l00108" name="l00108"></a><span class="lineno"> 108</span> <a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#af5093d05e84f4d23e3ea7f1413e88e40">Logger</a>.LogTrace(<span class="stringliteral">&quot;Not creating deployment&quot;</span>);</div>
<div class="line"><a id="l00109" name="l00109"></a><span class="lineno"> 109</span> <span class="keywordflow">else</span> <span class="keywordflow">if</span> (!instanceAuthenticated)</div>
<div class="line"><a id="l00110" name="l00110"></a><span class="lineno"> 110</span> <a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#af5093d05e84f4d23e3ea7f1413e88e40">Logger</a>.LogWarning(<span class="stringliteral">&quot;Can&#39;t create GitHub deployment as no access token is set for repository!&quot;</span>);</div>
<div class="line"><a id="l00111" name="l00111"></a><span class="lineno"> 111</span> <span class="keywordflow">else</span> <span class="keywordflow">if</span> (authenticatedGitHubService != <span class="keyword">null</span>)</div>
<div class="line"><a id="l00112" name="l00112"></a><span class="lineno"> 112</span> {</div>
<div class="line"><a id="l00113" name="l00113"></a><span class="lineno"> 113</span> <a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#af5093d05e84f4d23e3ea7f1413e88e40">Logger</a>.LogTrace(<span class="stringliteral">&quot;Creating deployment...&quot;</span>);</div>
<div class="line"><a id="l00114" name="l00114"></a><span class="lineno"> 114</span> <span class="keywordflow">try</span></div>
<div class="line"><a id="l00115" name="l00115"></a><span class="lineno"> 115</span> {</div>
<div class="line"><a id="l00116" name="l00116"></a><span class="lineno"> 116</span> compileJob.GitHubDeploymentId = await authenticatedGitHubService.<a class="code hl_function" href="interface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_authenticated_git_hub_service.html#a6ec88b25682381d11b7d39a4414383e0">CreateDeployment</a>(</div>
<div class="line"><a id="l00117" name="l00117"></a><span class="lineno"> 117</span> <span class="keyword">new</span> NewDeployment(compileJob.<a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a30c14e7fc4c770ff11cd0f10be4fb4dd">RevisionInformation</a>.<a class="code hl_property" href="class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_revision_information.html#ac93d5aef3a8222c5b5ceed6df8e7b309">CommitSha</a>)</div>
<div class="line"><a id="l00118" name="l00118"></a><span class="lineno"> 118</span> {</div>
<div class="line"><a id="l00119" name="l00119"></a><span class="lineno"> 119</span> AutoMerge = false,</div>
<div class="line"><a id="l00120" name="l00120"></a><span class="lineno"> 120</span> Description = <span class="stringliteral">&quot;TGS Game Deployment&quot;</span>,</div>
<div class="line"><a id="l00121" name="l00121"></a><span class="lineno"> 121</span> Environment = $<span class="stringliteral">&quot;TGS: {Metadata.Name}&quot;</span>,</div>
<div class="line"><a id="l00122" name="l00122"></a><span class="lineno"> 122</span> ProductionEnvironment = true,</div>
<div class="line"><a id="l00123" name="l00123"></a><span class="lineno"> 123</span> RequiredContexts = new Collection&lt;string&gt;(),</div>
<div class="line"><a id="l00124" name="l00124"></a><span class="lineno"> 124</span> },</div>
<div class="line"><a id="l00125" name="l00125"></a><span class="lineno"> 125</span> repoOwner,</div>
<div class="line"><a id="l00126" name="l00126"></a><span class="lineno"> 126</span> repoName,</div>
<div class="line"><a id="l00127" name="l00127"></a><span class="lineno"> 127</span> cancellationToken);</div>
<div class="line"><a id="l00128" name="l00128"></a><span class="lineno"> 128</span> </div>
<div class="line"><a id="l00129" name="l00129"></a><span class="lineno"> 129</span> <a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#af5093d05e84f4d23e3ea7f1413e88e40">Logger</a>.LogDebug(<span class="stringliteral">&quot;Created deployment ID {deploymentId}&quot;</span>, compileJob.<a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a552bf96fdea84a75e32f111a7c96d931">GitHubDeploymentId</a>);</div>
<div class="line"><a id="l00130" name="l00130"></a><span class="lineno"> 130</span> </div>
<div class="line"><a id="l00131" name="l00131"></a><span class="lineno"> 131</span> await authenticatedGitHubService.<a class="code hl_function" href="interface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_authenticated_git_hub_service.html#afe4ffe75eea54d6dd06187485b9ccfea">CreateDeploymentStatus</a>(</div>
<div class="line"><a id="l00132" name="l00132"></a><span class="lineno"> 132</span> <span class="keyword">new</span> NewDeploymentStatus(DeploymentState.InProgress)</div>
<div class="line"><a id="l00133" name="l00133"></a><span class="lineno"> 133</span> {</div>
<div class="line"><a id="l00134" name="l00134"></a><span class="lineno"> 134</span> Description = <span class="stringliteral">&quot;The project is being deployed&quot;</span>,</div>
<div class="line"><a id="l00135" name="l00135"></a><span class="lineno"> 135</span> AutoInactive = false,</div>
<div class="line"><a id="l00136" name="l00136"></a><span class="lineno"> 136</span> },</div>
<div class="line"><a id="l00137" name="l00137"></a><span class="lineno"> 137</span> repoOwner,</div>
<div class="line"><a id="l00138" name="l00138"></a><span class="lineno"> 138</span> repoName,</div>
<div class="line"><a id="l00139" name="l00139"></a><span class="lineno"> 139</span> compileJob.<a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a552bf96fdea84a75e32f111a7c96d931">GitHubDeploymentId</a>.Value,</div>
<div class="line"><a id="l00140" name="l00140"></a><span class="lineno"> 140</span> cancellationToken);</div>
<div class="line"><a id="l00141" name="l00141"></a><span class="lineno"> 141</span> </div>
<div class="line"><a id="l00142" name="l00142"></a><span class="lineno"> 142</span> <a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#af5093d05e84f4d23e3ea7f1413e88e40">Logger</a>.LogTrace(<span class="stringliteral">&quot;In-progress deployment status created&quot;</span>);</div>
<div class="line"><a id="l00143" name="l00143"></a><span class="lineno"> 143</span> }</div>
<div class="line"><a id="l00144" name="l00144"></a><span class="lineno"> 144</span> <span class="keywordflow">catch</span> (<a class="code hl_class" href="class_exception.html">Exception</a> ex) when (ex is not OperationCanceledException)</div>
<div class="line"><a id="l00145" name="l00145"></a><span class="lineno"> 145</span> {</div>
<div class="line"><a id="l00146" name="l00146"></a><span class="lineno"> 146</span> <a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#af5093d05e84f4d23e3ea7f1413e88e40">Logger</a>.LogWarning(ex, <span class="stringliteral">&quot;Unable to create GitHub deployment!&quot;</span>);</div>
<div class="line"><a id="l00147" name="l00147"></a><span class="lineno"> 147</span> }</div>
<div class="line"><a id="l00148" name="l00148"></a><span class="lineno"> 148</span> }</div>
<div class="line"><a id="l00149" name="l00149"></a><span class="lineno"> 149</span> </div>
<div class="line"><a id="l00150" name="l00150"></a><span class="lineno"> 150</span> <span class="keywordflow">try</span></div>
<div class="line"><a id="l00151" name="l00151"></a><span class="lineno"> 151</span> {</div>
<div class="line"><a id="l00152" name="l00152"></a><span class="lineno"> 152</span> compileJob.GitHubRepoId = await repositoryIdTask;</div>
<div class="line"><a id="l00153" name="l00153"></a><span class="lineno"> 153</span> <a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#af5093d05e84f4d23e3ea7f1413e88e40">Logger</a>.LogTrace(<span class="stringliteral">&quot;Set GitHub ID as {gitHubRepoId}&quot;</span>, compileJob.<a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#ac12e2d50eb98927e394618b97b0ce9ef">GitHubRepoId</a>);</div>
<div class="line"><a id="l00154" name="l00154"></a><span class="lineno"> 154</span> }</div>
<div class="line"><a id="l00155" name="l00155"></a><span class="lineno"> 155</span> <span class="keywordflow">catch</span> (<a class="code hl_class" href="class_exception.html">Exception</a> ex) when (ex is not OperationCanceledException)</div>
<div class="line"><a id="l00156" name="l00156"></a><span class="lineno"> 156</span> {</div>
<div class="line"><a id="l00157" name="l00157"></a><span class="lineno"> 157</span> <a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#af5093d05e84f4d23e3ea7f1413e88e40">Logger</a>.LogWarning(ex, <span class="stringliteral">&quot;Unable to set compile job repository ID!&quot;</span>);</div>
<div class="line"><a id="l00158" name="l00158"></a><span class="lineno"> 158</span> }</div>
<div class="line"><a id="l00159" name="l00159"></a><span class="lineno"> 159</span> }</div>
</div>
<div class="line"><a id="l00160" name="l00160"></a><span class="lineno"> 160</span> </div>
<div class="line"><a id="l00162" name="l00162"></a><span class="lineno"><a class="line" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a61a329748d638248f2404445a9e8d886"> 162</a></span> <span class="keyword">public</span> <span class="keyword">override</span> ValueTask <a class="code hl_function" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a61a329748d638248f2404445a9e8d886">FailDeployment</a>(<a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html">CompileJob</a> compileJob, <span class="keywordtype">string</span> errorMessage, CancellationToken cancellationToken)</div>
<div class="line"><a id="l00163" name="l00163"></a><span class="lineno"> 163</span> =&gt; <a class="code hl_function" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a21a61ea40a81b3f754fa230917fb7c56">UpdateDeployment</a>(</div>
<div class="line"><a id="l00164" name="l00164"></a><span class="lineno"> 164</span> compileJob,</div>
<div class="line"><a id="l00165" name="l00165"></a><span class="lineno"> 165</span> errorMessage,</div>
<div class="line"><a id="l00166" name="l00166"></a><span class="lineno"> 166</span> DeploymentState.Error,</div>
<div class="line"><a id="l00167" name="l00167"></a><span class="lineno"> 167</span> cancellationToken);</div>
<div class="line"><a id="l00168" name="l00168"></a><span class="lineno"> 168</span> </div>
<div class="foldopen" id="foldopen00170" data-start="{" data-end="}">
<div class="line"><a id="l00170" name="l00170"></a><span class="lineno"><a class="line" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a2873ee4483a0a0912e4dbdecff19a853"> 170</a></span> <span class="keyword">public</span> <span class="keyword">override</span> async ValueTask&lt;IReadOnlyCollection&lt;TestMerge&gt;&gt; <a class="code hl_function" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a2873ee4483a0a0912e4dbdecff19a853">RemoveMergedTestMerges</a>(</div>
<div class="line"><a id="l00171" name="l00171"></a><span class="lineno"> 171</span> <a class="code hl_interface" href="interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html">IRepository</a> repository,</div>
<div class="line"><a id="l00172" name="l00172"></a><span class="lineno"> 172</span> <a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html">RepositorySettings</a> repositorySettings,</div>
<div class="line"><a id="l00173" name="l00173"></a><span class="lineno"> 173</span> <a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html">RevisionInformation</a> revisionInformation,</div>
<div class="line"><a id="l00174" name="l00174"></a><span class="lineno"> 174</span> CancellationToken cancellationToken)</div>
<div class="line"><a id="l00175" name="l00175"></a><span class="lineno"> 175</span> {</div>
<div class="line"><a id="l00176" name="l00176"></a><span class="lineno"> 176</span> ArgumentNullException.ThrowIfNull(repository);</div>
<div class="line"><a id="l00177" name="l00177"></a><span class="lineno"> 177</span> ArgumentNullException.ThrowIfNull(repositorySettings);</div>
<div class="line"><a id="l00178" name="l00178"></a><span class="lineno"> 178</span> ArgumentNullException.ThrowIfNull(revisionInformation);</div>
<div class="line"><a id="l00179" name="l00179"></a><span class="lineno"> 179</span> </div>
<div class="line"><a id="l00180" name="l00180"></a><span class="lineno"> 180</span> <span class="keywordflow">if</span> ((revisionInformation.<a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#a099c30ffa1bc05ed492ce8b3d9e3cd4c">ActiveTestMerges</a>?.Count &gt; 0) != <span class="keyword">true</span>)</div>
<div class="line"><a id="l00181" name="l00181"></a><span class="lineno"> 181</span> {</div>
<div class="line"><a id="l00182" name="l00182"></a><span class="lineno"> 182</span> <a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#af5093d05e84f4d23e3ea7f1413e88e40">Logger</a>.LogTrace(<span class="stringliteral">&quot;No test merges to remove.&quot;</span>);</div>
<div class="line"><a id="l00183" name="l00183"></a><span class="lineno"> 183</span> <span class="keywordflow">return</span> Array.Empty&lt;<a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html">TestMerge</a>&gt;();</div>
<div class="line"><a id="l00184" name="l00184"></a><span class="lineno"> 184</span> }</div>
<div class="line"><a id="l00185" name="l00185"></a><span class="lineno"> 185</span> </div>
<div class="line"><a id="l00186" name="l00186"></a><span class="lineno"> 186</span> var gitHubService = repositorySettings.AccessToken != <span class="keyword">null</span></div>
<div class="line"><a id="l00187" name="l00187"></a><span class="lineno"> 187</span> ? await <a class="code hl_variable" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a0cc2207612ce4acf4e38b326ae6f9d02">gitHubServiceFactory</a>.<a class="code hl_function" href="interface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_git_hub_service_factory.html#a93de0a6eeb420eec2ecaa935ebabc7b9">CreateService</a>(</div>
<div class="line"><a id="l00188" name="l00188"></a><span class="lineno"> 188</span> repositorySettings.<a class="code hl_property" href="class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository_settings.html#ab0bca804385494f141395c333ea81221">AccessToken</a>,</div>
<div class="line"><a id="l00189" name="l00189"></a><span class="lineno"> 189</span> <span class="keyword">new</span> <a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_repository_identifier.html">RepositoryIdentifier</a>(repository),</div>
<div class="line"><a id="l00190" name="l00190"></a><span class="lineno"> 190</span> cancellationToken)</div>
<div class="line"><a id="l00191" name="l00191"></a><span class="lineno"> 191</span> ?? await <a class="code hl_variable" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a0cc2207612ce4acf4e38b326ae6f9d02">gitHubServiceFactory</a>.<a class="code hl_function" href="interface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_git_hub_service_factory.html#a93de0a6eeb420eec2ecaa935ebabc7b9">CreateService</a>(cancellationToken)</div>
<div class="line"><a id="l00192" name="l00192"></a><span class="lineno"> 192</span> : await <a class="code hl_variable" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a0cc2207612ce4acf4e38b326ae6f9d02">gitHubServiceFactory</a>.<a class="code hl_function" href="interface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_git_hub_service_factory.html#a93de0a6eeb420eec2ecaa935ebabc7b9">CreateService</a>(cancellationToken);</div>
<div class="line"><a id="l00193" name="l00193"></a><span class="lineno"> 193</span> </div>
<div class="line"><a id="l00194" name="l00194"></a><span class="lineno"> 194</span> var tasks = revisionInformation</div>
<div class="line"><a id="l00195" name="l00195"></a><span class="lineno"> 195</span> .<a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#a099c30ffa1bc05ed492ce8b3d9e3cd4c">ActiveTestMerges</a></div>
<div class="line"><a id="l00196" name="l00196"></a><span class="lineno"> 196</span> .Select(x =&gt; gitHubService.GetPullRequest(</div>
<div class="line"><a id="l00197" name="l00197"></a><span class="lineno"> 197</span> repository.<a class="code hl_property" href="interface_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_i_git_remote_information.html#a337342e3a22ef245c1744c32ef313ec0">RemoteRepositoryOwner</a>!,</div>
<div class="line"><a id="l00198" name="l00198"></a><span class="lineno"> 198</span> repository.<a class="code hl_property" href="interface_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_i_git_remote_information.html#a16b1a16989886b7fe3beab0a46b83a4b">RemoteRepositoryName</a>!,</div>
<div class="line"><a id="l00199" name="l00199"></a><span class="lineno"> 199</span> x.TestMerge.Number,</div>
<div class="line"><a id="l00200" name="l00200"></a><span class="lineno"> 200</span> cancellationToken));</div>
<div class="line"><a id="l00201" name="l00201"></a><span class="lineno"> 201</span> <span class="keywordflow">try</span></div>
<div class="line"><a id="l00202" name="l00202"></a><span class="lineno"> 202</span> {</div>
<div class="line"><a id="l00203" name="l00203"></a><span class="lineno"> 203</span> await Task.WhenAll(tasks);</div>
<div class="line"><a id="l00204" name="l00204"></a><span class="lineno"> 204</span> }</div>
<div class="line"><a id="l00205" name="l00205"></a><span class="lineno"> 205</span> <span class="keywordflow">catch</span> (<a class="code hl_class" href="class_exception.html">Exception</a> ex) when (ex is not OperationCanceledException)</div>
<div class="line"><a id="l00206" name="l00206"></a><span class="lineno"> 206</span> {</div>
<div class="line"><a id="l00207" name="l00207"></a><span class="lineno"> 207</span> <a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#af5093d05e84f4d23e3ea7f1413e88e40">Logger</a>.LogWarning(ex, <span class="stringliteral">&quot;Pull requests update check failed!&quot;</span>);</div>
<div class="line"><a id="l00208" name="l00208"></a><span class="lineno"> 208</span> }</div>
<div class="line"><a id="l00209" name="l00209"></a><span class="lineno"> 209</span> </div>
<div class="line"><a id="l00210" name="l00210"></a><span class="lineno"> 210</span> var newList = revisionInformation.<a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#a099c30ffa1bc05ed492ce8b3d9e3cd4c">ActiveTestMerges</a>.Select(x =&gt; x.TestMerge).ToList();</div>
<div class="line"><a id="l00211" name="l00211"></a><span class="lineno"> 211</span> </div>
<div class="line"><a id="l00212" name="l00212"></a><span class="lineno"> 212</span> PullRequest? lastMerged = <span class="keyword">null</span>;</div>
<div class="line"><a id="l00213" name="l00213"></a><span class="lineno"> 213</span> async ValueTask CheckRemovePR(Task&lt;PullRequest&gt; task)</div>
<div class="line"><a id="l00214" name="l00214"></a><span class="lineno"> 214</span> {</div>
<div class="line"><a id="l00215" name="l00215"></a><span class="lineno"> 215</span> var pr = await task;</div>
<div class="line"><a id="l00216" name="l00216"></a><span class="lineno"> 216</span> <span class="keywordflow">if</span> (!pr.Merged)</div>
<div class="line"><a id="l00217" name="l00217"></a><span class="lineno"> 217</span> <span class="keywordflow">return</span>;</div>
<div class="line"><a id="l00218" name="l00218"></a><span class="lineno"> 218</span> </div>
<div class="line"><a id="l00219" name="l00219"></a><span class="lineno"> 219</span> <span class="comment">// We don&#39;t just assume, actually check the repo contains the merge commit.</span></div>
<div class="line"><a id="l00220" name="l00220"></a><span class="lineno"> 220</span> <span class="keywordflow">if</span> (await repository.<a class="code hl_function" href="interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#ab8e15b3dd9fe05cabc167ad5e6b3cdcd">CommittishIsParent</a>(pr.MergeCommitSha, cancellationToken))</div>
<div class="line"><a id="l00221" name="l00221"></a><span class="lineno"> 221</span> {</div>
<div class="line"><a id="l00222" name="l00222"></a><span class="lineno"> 222</span> <span class="keywordflow">if</span> (lastMerged == <span class="keyword">null</span> || lastMerged.MergedAt &lt; pr.MergedAt)</div>
<div class="line"><a id="l00223" name="l00223"></a><span class="lineno"> 223</span> lastMerged = pr;</div>
<div class="line"><a id="l00224" name="l00224"></a><span class="lineno"> 224</span> newList.Remove(</div>
<div class="line"><a id="l00225" name="l00225"></a><span class="lineno"> 225</span> newList.First(</div>
<div class="line"><a id="l00226" name="l00226"></a><span class="lineno"> 226</span> potential =&gt; potential.Number == pr.Number));</div>
<div class="line"><a id="l00227" name="l00227"></a><span class="lineno"> 227</span> }</div>
<div class="line"><a id="l00228" name="l00228"></a><span class="lineno"> 228</span> }</div>
<div class="line"><a id="l00229" name="l00229"></a><span class="lineno"> 229</span> </div>
<div class="line"><a id="l00230" name="l00230"></a><span class="lineno"> 230</span> <span class="keywordflow">foreach</span> (var prTask <span class="keywordflow">in</span> tasks)</div>
<div class="line"><a id="l00231" name="l00231"></a><span class="lineno"> 231</span> await CheckRemovePR(prTask);</div>
<div class="line"><a id="l00232" name="l00232"></a><span class="lineno"> 232</span> </div>
<div class="line"><a id="l00233" name="l00233"></a><span class="lineno"> 233</span> <span class="keywordflow">return</span> newList;</div>
<div class="line"><a id="l00234" name="l00234"></a><span class="lineno"> 234</span> }</div>
</div>
<div class="line"><a id="l00235" name="l00235"></a><span class="lineno"> 235</span> </div>
<div class="line"><a id="l00237" name="l00237"></a><span class="lineno"><a class="line" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a8756842313452447bfe3b68da144f0c8"> 237</a></span> <span class="keyword">protected</span> <span class="keyword">override</span> ValueTask <a class="code hl_function" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a8756842313452447bfe3b68da144f0c8">StageDeploymentImpl</a>(</div>
<div class="line"><a id="l00238" name="l00238"></a><span class="lineno"> 238</span> <a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html">CompileJob</a> compileJob,</div>
<div class="line"><a id="l00239" name="l00239"></a><span class="lineno"> 239</span> CancellationToken cancellationToken)</div>
<div class="line"><a id="l00240" name="l00240"></a><span class="lineno"> 240</span> =&gt; <a class="code hl_function" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a21a61ea40a81b3f754fa230917fb7c56">UpdateDeployment</a>(</div>
<div class="line"><a id="l00241" name="l00241"></a><span class="lineno"> 241</span> compileJob,</div>
<div class="line"><a id="l00242" name="l00242"></a><span class="lineno"> 242</span> <span class="stringliteral">&quot;The deployment succeeded and will be applied a the next server reboot.&quot;</span>,</div>
<div class="line"><a id="l00243" name="l00243"></a><span class="lineno"> 243</span> DeploymentState.Pending,</div>
<div class="line"><a id="l00244" name="l00244"></a><span class="lineno"> 244</span> cancellationToken);</div>
<div class="line"><a id="l00245" name="l00245"></a><span class="lineno"> 245</span> </div>
<div class="line"><a id="l00247" name="l00247"></a><span class="lineno"><a class="line" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#aa02b27cb9972b2e0596675c6e58941fd"> 247</a></span> <span class="keyword">protected</span> <span class="keyword">override</span> ValueTask <a class="code hl_function" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#aa02b27cb9972b2e0596675c6e58941fd">ApplyDeploymentImpl</a>(<a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html">CompileJob</a> compileJob, CancellationToken cancellationToken)</div>
<div class="line"><a id="l00248" name="l00248"></a><span class="lineno"> 248</span> =&gt; <a class="code hl_function" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a21a61ea40a81b3f754fa230917fb7c56">UpdateDeployment</a>(</div>
<div class="line"><a id="l00249" name="l00249"></a><span class="lineno"> 249</span> compileJob,</div>
<div class="line"><a id="l00250" name="l00250"></a><span class="lineno"> 250</span> <span class="stringliteral">&quot;The deployment is now live on the server.&quot;</span>,</div>
<div class="line"><a id="l00251" name="l00251"></a><span class="lineno"> 251</span> DeploymentState.Success,</div>
<div class="line"><a id="l00252" name="l00252"></a><span class="lineno"> 252</span> cancellationToken);</div>
<div class="line"><a id="l00253" name="l00253"></a><span class="lineno"> 253</span> </div>
<div class="line"><a id="l00255" name="l00255"></a><span class="lineno"><a class="line" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a5a724c8be6cd91a16ca3f7ceb971fb28"> 255</a></span> <span class="keyword">protected</span> <span class="keyword">override</span> ValueTask <a class="code hl_function" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a5a724c8be6cd91a16ca3f7ceb971fb28">MarkInactiveImpl</a>(<a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html">CompileJob</a> compileJob, CancellationToken cancellationToken)</div>
<div class="line"><a id="l00256" name="l00256"></a><span class="lineno"> 256</span> =&gt; <a class="code hl_function" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a21a61ea40a81b3f754fa230917fb7c56">UpdateDeployment</a>(</div>
<div class="line"><a id="l00257" name="l00257"></a><span class="lineno"> 257</span> compileJob,</div>
<div class="line"><a id="l00258" name="l00258"></a><span class="lineno"> 258</span> <span class="stringliteral">&quot;The deployment has been superceeded.&quot;</span>,</div>
<div class="line"><a id="l00259" name="l00259"></a><span class="lineno"> 259</span> DeploymentState.Inactive,</div>
<div class="line"><a id="l00260" name="l00260"></a><span class="lineno"> 260</span> cancellationToken);</div>
<div class="line"><a id="l00261" name="l00261"></a><span class="lineno"> 261</span> </div>
<div class="foldopen" id="foldopen00263" data-start="{" data-end="}">
<div class="line"><a id="l00263" name="l00263"></a><span class="lineno"><a class="line" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a00647623f9070251136cf45351db7f8f"> 263</a></span> <span class="keyword">protected</span> <span class="keyword">override</span> async ValueTask <a class="code hl_function" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a00647623f9070251136cf45351db7f8f">CommentOnTestMergeSource</a>(</div>
<div class="line"><a id="l00264" name="l00264"></a><span class="lineno"> 264</span> <a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html">RepositorySettings</a> repositorySettings,</div>
<div class="line"><a id="l00265" name="l00265"></a><span class="lineno"> 265</span> <span class="keywordtype">string</span> remoteRepositoryOwner,</div>
<div class="line"><a id="l00266" name="l00266"></a><span class="lineno"> 266</span> <span class="keywordtype">string</span> remoteRepositoryName,</div>
<div class="line"><a id="l00267" name="l00267"></a><span class="lineno"> 267</span> <span class="keywordtype">string</span> comment,</div>
<div class="line"><a id="l00268" name="l00268"></a><span class="lineno"> 268</span> <span class="keywordtype">int</span> testMergeNumber,</div>
<div class="line"><a id="l00269" name="l00269"></a><span class="lineno"> 269</span> CancellationToken cancellationToken)</div>
<div class="line"><a id="l00270" name="l00270"></a><span class="lineno"> 270</span> {</div>
<div class="line"><a id="l00271" name="l00271"></a><span class="lineno"> 271</span> var gitHubService = await <a class="code hl_variable" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a0cc2207612ce4acf4e38b326ae6f9d02">gitHubServiceFactory</a>.<a class="code hl_function" href="interface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_git_hub_service_factory.html#a93de0a6eeb420eec2ecaa935ebabc7b9">CreateService</a>(</div>
<div class="line"><a id="l00272" name="l00272"></a><span class="lineno"> 272</span> repositorySettings.<a class="code hl_property" href="class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository_settings.html#ab0bca804385494f141395c333ea81221">AccessToken</a>!,</div>
<div class="line"><a id="l00273" name="l00273"></a><span class="lineno"> 273</span> <span class="keyword">new</span> <a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_repository_identifier.html">RepositoryIdentifier</a>(remoteRepositoryOwner, remoteRepositoryName),</div>
<div class="line"><a id="l00274" name="l00274"></a><span class="lineno"> 274</span> cancellationToken);</div>
<div class="line"><a id="l00275" name="l00275"></a><span class="lineno"> 275</span> </div>
<div class="line"><a id="l00276" name="l00276"></a><span class="lineno"> 276</span> <span class="keywordflow">if</span> (gitHubService == <span class="keyword">null</span>)</div>
<div class="line"><a id="l00277" name="l00277"></a><span class="lineno"> 277</span> {</div>
<div class="line"><a id="l00278" name="l00278"></a><span class="lineno"> 278</span> <a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#af5093d05e84f4d23e3ea7f1413e88e40">Logger</a>.LogWarning(<span class="stringliteral">&quot;Error posting GitHub comment: Authentication failed!&quot;</span>);</div>
<div class="line"><a id="l00279" name="l00279"></a><span class="lineno"> 279</span> <span class="keywordflow">return</span>;</div>
<div class="line"><a id="l00280" name="l00280"></a><span class="lineno"> 280</span> }</div>
<div class="line"><a id="l00281" name="l00281"></a><span class="lineno"> 281</span> </div>
<div class="line"><a id="l00282" name="l00282"></a><span class="lineno"> 282</span> <span class="keywordflow">try</span></div>
<div class="line"><a id="l00283" name="l00283"></a><span class="lineno"> 283</span> {</div>
<div class="line"><a id="l00284" name="l00284"></a><span class="lineno"> 284</span> <span class="keywordtype">string</span> header = String.Format(CultureInfo.InvariantCulture, <span class="stringliteral">&quot;{1}{0}## Test merge deployment history:{0}{0}&quot;</span>, Environment.NewLine, <a class="code hl_variable" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#a39e6fbd8125e89d030446a410b25e5e1">DeploymentMsgHeaderStart</a>);</div>
<div class="line"><a id="l00285" name="l00285"></a><span class="lineno"> 285</span> </div>
<div class="line"><a id="l00286" name="l00286"></a><span class="lineno"> 286</span> var existingComment = await gitHubService.GetExistingCommentOnIssue(remoteRepositoryOwner, remoteRepositoryName, <a class="code hl_variable" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#a39e6fbd8125e89d030446a410b25e5e1">DeploymentMsgHeaderStart</a>, testMergeNumber, cancellationToken);</div>
<div class="line"><a id="l00287" name="l00287"></a><span class="lineno"> 287</span> <span class="keywordflow">if</span> (existingComment != <span class="keyword">null</span>)</div>
<div class="line"><a id="l00288" name="l00288"></a><span class="lineno"> 288</span> {</div>
<div class="line"><a id="l00289" name="l00289"></a><span class="lineno"> 289</span> await gitHubService.AppendCommentOnIssue(remoteRepositoryOwner, remoteRepositoryName, comment, existingComment, cancellationToken);</div>
<div class="line"><a id="l00290" name="l00290"></a><span class="lineno"> 290</span> }</div>
<div class="line"><a id="l00291" name="l00291"></a><span class="lineno"> 291</span> <span class="keywordflow">else</span></div>
<div class="line"><a id="l00292" name="l00292"></a><span class="lineno"> 292</span> {</div>
<div class="line"><a id="l00293" name="l00293"></a><span class="lineno"> 293</span> await gitHubService.CommentOnIssue(remoteRepositoryOwner, remoteRepositoryName, header + comment, testMergeNumber, cancellationToken);</div>
<div class="line"><a id="l00294" name="l00294"></a><span class="lineno"> 294</span> }</div>
<div class="line"><a id="l00295" name="l00295"></a><span class="lineno"> 295</span> }</div>
<div class="line"><a id="l00296" name="l00296"></a><span class="lineno"> 296</span> <span class="keywordflow">catch</span> (<a class="code hl_class" href="class_exception.html">Exception</a> ex) when (ex is not OperationCanceledException)</div>
<div class="line"><a id="l00297" name="l00297"></a><span class="lineno"> 297</span> {</div>
<div class="line"><a id="l00298" name="l00298"></a><span class="lineno"> 298</span> <a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#af5093d05e84f4d23e3ea7f1413e88e40">Logger</a>.LogWarning(ex, <span class="stringliteral">&quot;Error posting GitHub comment!&quot;</span>);</div>
<div class="line"><a id="l00299" name="l00299"></a><span class="lineno"> 299</span> }</div>
<div class="line"><a id="l00300" name="l00300"></a><span class="lineno"> 300</span> }</div>
</div>
<div class="line"><a id="l00301" name="l00301"></a><span class="lineno"> 301</span> </div>
<div class="line"><a id="l00303" name="l00303"></a><span class="lineno"><a class="line" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a848f31d9c56d2964293c43e71ddfbb04"> 303</a></span> <span class="keyword">protected</span> <span class="keyword">override</span> <span class="keywordtype">string</span> <a class="code hl_function" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a848f31d9c56d2964293c43e71ddfbb04">FormatTestMerge</a>(</div>
<div class="line"><a id="l00304" name="l00304"></a><span class="lineno"> 304</span> <a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html">RepositorySettings</a> repositorySettings,</div>
<div class="line"><a id="l00305" name="l00305"></a><span class="lineno"> 305</span> <a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html">CompileJob</a> compileJob,</div>
<div class="line"><a id="l00306" name="l00306"></a><span class="lineno"> 306</span> <a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html">TestMerge</a> testMerge,</div>
<div class="line"><a id="l00307" name="l00307"></a><span class="lineno"> 307</span> <span class="keywordtype">string</span> remoteRepositoryOwner,</div>
<div class="line"><a id="l00308" name="l00308"></a><span class="lineno"> 308</span> <span class="keywordtype">string</span> remoteRepositoryName,</div>
<div class="line"><a id="l00309" name="l00309"></a><span class="lineno"> 309</span> <span class="keywordtype">bool</span> updated) =&gt; String.Format(</div>
<div class="line"><a id="l00310" name="l00310"></a><span class="lineno"> 310</span> CultureInfo.InvariantCulture,</div>
<div class="line"><a id="l00311" name="l00311"></a><span class="lineno"> 311</span> <span class="stringliteral">&quot;&lt;details&gt;&lt;summary&gt;Test Merge {4} @ {8}:&lt;/summary&gt;{0}{0}##### Server Instance{0}{5}{1}{0}{0}##### Revision{0}Origin: {6}{0}Pull Request: {2}{0}Server: {7}{3}{0}&lt;/details&gt;{0}&quot;</span>,</div>
<div class="line"><a id="l00312" name="l00312"></a><span class="lineno"> 312</span> Environment.NewLine, <span class="comment">// 0</span></div>
<div class="line"><a id="l00313" name="l00313"></a><span class="lineno"> 313</span> repositorySettings.ShowTestMergeCommitters!.Value</div>
<div class="line"><a id="l00314" name="l00314"></a><span class="lineno"> 314</span> ? String.Format(</div>
<div class="line"><a id="l00315" name="l00315"></a><span class="lineno"> 315</span> CultureInfo.InvariantCulture,</div>
<div class="line"><a id="l00316" name="l00316"></a><span class="lineno"> 316</span> <span class="stringliteral">&quot;{0}{0}##### Merged By{0}{1}&quot;</span>,</div>
<div class="line"><a id="l00317" name="l00317"></a><span class="lineno"> 317</span> Environment.NewLine,</div>
<div class="line"><a id="l00318" name="l00318"></a><span class="lineno"> 318</span> testMerge.MergedBy!.Name)</div>
<div class="line"><a id="l00319" name="l00319"></a><span class="lineno"> 319</span> : String.Empty, <span class="comment">// 1</span></div>
<div class="line"><a id="l00320" name="l00320"></a><span class="lineno"> 320</span> testMerge.TargetCommitSha, <span class="comment">// 2</span></div>
<div class="line"><a id="l00321" name="l00321"></a><span class="lineno"> 321</span> String.IsNullOrEmpty(testMerge.Comment)</div>
<div class="line"><a id="l00322" name="l00322"></a><span class="lineno"> 322</span> ? String.Empty</div>
<div class="line"><a id="l00323" name="l00323"></a><span class="lineno"> 323</span> : String.Format(</div>
<div class="line"><a id="l00324" name="l00324"></a><span class="lineno"> 324</span> CultureInfo.InvariantCulture,</div>
<div class="line"><a id="l00325" name="l00325"></a><span class="lineno"> 325</span> <span class="stringliteral">&quot;{0}{0}##### Comment{0}{1}&quot;</span>,</div>
<div class="line"><a id="l00326" name="l00326"></a><span class="lineno"> 326</span> Environment.NewLine,</div>
<div class="line"><a id="l00327" name="l00327"></a><span class="lineno"> 327</span> testMerge.Comment), <span class="comment">// 3</span></div>
<div class="line"><a id="l00328" name="l00328"></a><span class="lineno"> 328</span> updated ? <span class="stringliteral">&quot;Updated&quot;</span> : <span class="stringliteral">&quot;Deployed&quot;</span>, <span class="comment">// 4</span></div>
<div class="line"><a id="l00329" name="l00329"></a><span class="lineno"> 329</span> compileJob.GitHubDeploymentId.HasValue</div>
<div class="line"><a id="l00330" name="l00330"></a><span class="lineno"> 330</span> ? $<span class="stringliteral">&quot;{Environment.NewLine}[{Metadata.Name}](https://github.com/{remoteRepositoryOwner}/{remoteRepositoryName}/deployments/activity_log?environment=TGS%3A+{Metadata.Name!.Replace(&quot;</span> <span class="stringliteral">&quot;, &quot;</span>+<span class="stringliteral">&quot;, StringComparison.Ordinal)})&quot;</span></div>
<div class="line"><a id="l00331" name="l00331"></a><span class="lineno"> 331</span> : <a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#a3217b057f1e1bd47bdd167178f257645">Metadata</a>.Name, <span class="comment">// 5</span></div>
<div class="line"><a id="l00332" name="l00332"></a><span class="lineno"> 332</span> compileJob.<a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html">RevisionInformation</a>.OriginCommitSha, <span class="comment">// 6</span></div>
<div class="line"><a id="l00333" name="l00333"></a><span class="lineno"> 333</span> compileJob.<a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html">RevisionInformation</a>.CommitSha, <span class="comment">// 7</span></div>
<div class="line"><a id="l00334" name="l00334"></a><span class="lineno"> 334</span> compileJob.<a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_job.html">Job</a>.StartedAt); <span class="comment">// 8</span></div>
<div class="line"><a id="l00335" name="l00335"></a><span class="lineno"> 335</span> </div>
<div class="line"><a id="l00337" name="l00337"></a><span class="lineno"><a class="line" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a336615f2d7a9fc05574ef6b4f46f14f8"> 337</a></span> <span class="keyword">protected</span> <span class="keyword">override</span> <span class="keywordtype">string</span> <a class="code hl_function" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a336615f2d7a9fc05574ef6b4f46f14f8">FormatTestMergeRemoval</a>(</div>
<div class="line"><a id="l00338" name="l00338"></a><span class="lineno"> 338</span> <a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html">RepositorySettings</a> repositorySettings,</div>
<div class="line"><a id="l00339" name="l00339"></a><span class="lineno"> 339</span> <a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html">CompileJob</a> compileJob,</div>
<div class="line"><a id="l00340" name="l00340"></a><span class="lineno"> 340</span> <a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html">TestMerge</a> testMerge,</div>
<div class="line"><a id="l00341" name="l00341"></a><span class="lineno"> 341</span> <span class="keywordtype">string</span> remoteRepositoryOwner,</div>
<div class="line"><a id="l00342" name="l00342"></a><span class="lineno"> 342</span> <span class="keywordtype">string</span> remoteRepositoryName) =&gt; String.Format(</div>
<div class="line"><a id="l00343" name="l00343"></a><span class="lineno"> 343</span> CultureInfo.InvariantCulture,</div>
<div class="line"><a id="l00344" name="l00344"></a><span class="lineno"> 344</span> <span class="stringliteral">&quot;&lt;details&gt;&lt;summary&gt;Test Merge Removed @ {2}:&lt;/summary&gt;{0}{0}##### Server Instance{0}{1}{0}&lt;/details&gt;{0}&quot;</span>,</div>
<div class="line"><a id="l00345" name="l00345"></a><span class="lineno"> 345</span> Environment.NewLine, <span class="comment">// 0</span></div>
<div class="line"><a id="l00346" name="l00346"></a><span class="lineno"> 346</span> <a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#a3217b057f1e1bd47bdd167178f257645">Metadata</a>.Name, <span class="comment">// 1</span></div>
<div class="line"><a id="l00347" name="l00347"></a><span class="lineno"> 347</span> compileJob.Job.StartedAt); <span class="comment">// 2</span></div>
<div class="line"><a id="l00348" name="l00348"></a><span class="lineno"> 348</span> </div>
<div class="foldopen" id="foldopen00357" data-start="{" data-end="}">
<div class="line"><a id="l00357" name="l00357"></a><span class="lineno"><a class="line" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a21a61ea40a81b3f754fa230917fb7c56"> 357</a></span> async ValueTask <a class="code hl_function" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a21a61ea40a81b3f754fa230917fb7c56">UpdateDeployment</a>(</div>
<div class="line"><a id="l00358" name="l00358"></a><span class="lineno"> 358</span> <a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html">CompileJob</a> compileJob,</div>
<div class="line"><a id="l00359" name="l00359"></a><span class="lineno"> 359</span> <span class="keywordtype">string</span> description,</div>
<div class="line"><a id="l00360" name="l00360"></a><span class="lineno"> 360</span> DeploymentState deploymentState,</div>
<div class="line"><a id="l00361" name="l00361"></a><span class="lineno"> 361</span> CancellationToken cancellationToken)</div>
<div class="line"><a id="l00362" name="l00362"></a><span class="lineno"> 362</span> {</div>
<div class="line"><a id="l00363" name="l00363"></a><span class="lineno"> 363</span> ArgumentNullException.ThrowIfNull(compileJob);</div>
<div class="line"><a id="l00364" name="l00364"></a><span class="lineno"> 364</span> </div>
<div class="line"><a id="l00365" name="l00365"></a><span class="lineno"> 365</span> <span class="keywordflow">if</span> (!compileJob.<a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#ac12e2d50eb98927e394618b97b0ce9ef">GitHubRepoId</a>.HasValue || !compileJob.<a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a552bf96fdea84a75e32f111a7c96d931">GitHubDeploymentId</a>.HasValue)</div>
<div class="line"><a id="l00366" name="l00366"></a><span class="lineno"> 366</span> {</div>
<div class="line"><a id="l00367" name="l00367"></a><span class="lineno"> 367</span> <a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#af5093d05e84f4d23e3ea7f1413e88e40">Logger</a>.LogTrace(<span class="stringliteral">&quot;Not updating deployment as it is missing a repo ID or deployment ID.&quot;</span>);</div>
<div class="line"><a id="l00368" name="l00368"></a><span class="lineno"> 368</span> <span class="keywordflow">return</span>;</div>
<div class="line"><a id="l00369" name="l00369"></a><span class="lineno"> 369</span> }</div>
<div class="line"><a id="l00370" name="l00370"></a><span class="lineno"> 370</span> </div>
<div class="line"><a id="l00371" name="l00371"></a><span class="lineno"> 371</span> <a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#af5093d05e84f4d23e3ea7f1413e88e40">Logger</a>.LogTrace(<span class="stringliteral">&quot;Updating deployment {gitHubDeploymentId} to {deploymentState}...&quot;</span>, compileJob.<a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a552bf96fdea84a75e32f111a7c96d931">GitHubDeploymentId</a>.Value, deploymentState);</div>
<div class="line"><a id="l00372" name="l00372"></a><span class="lineno"> 372</span> </div>
<div class="line"><a id="l00373" name="l00373"></a><span class="lineno"> 373</span> <span class="keywordtype">string</span>? gitHubAccessToken = <span class="keyword">null</span>;</div>
<div class="line"><a id="l00374" name="l00374"></a><span class="lineno"> 374</span> await <a class="code hl_variable" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a05daf039a3547769d54da9136bbbc22c">databaseContextFactory</a>.<a class="code hl_function" href="interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context_factory.html#a1da664d7237dbec5a6cb9ce04b79ccc1">UseContext</a>(</div>
<div class="line"><a id="l00375" name="l00375"></a><span class="lineno"> 375</span> async databaseContext =&gt;</div>
<div class="line"><a id="l00376" name="l00376"></a><span class="lineno"> 376</span> gitHubAccessToken = await databaseContext</div>
<div class="line"><a id="l00377" name="l00377"></a><span class="lineno"> 377</span> .<a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html">RepositorySettings</a></div>
<div class="line"><a id="l00378" name="l00378"></a><span class="lineno"> 378</span> .Where(x =&gt; x.InstanceId == <a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#a3217b057f1e1bd47bdd167178f257645">Metadata</a>.Id)</div>
<div class="line"><a id="l00379" name="l00379"></a><span class="lineno"> 379</span> .Select(x =&gt; x.AccessToken)</div>
<div class="line"><a id="l00380" name="l00380"></a><span class="lineno"> 380</span> .FirstAsync(cancellationToken));</div>
<div class="line"><a id="l00381" name="l00381"></a><span class="lineno"> 381</span> </div>
<div class="line"><a id="l00382" name="l00382"></a><span class="lineno"> 382</span> <span class="keywordflow">if</span> (gitHubAccessToken == <span class="keyword">null</span>)</div>
<div class="line"><a id="l00383" name="l00383"></a><span class="lineno"> 383</span> {</div>
<div class="line"><a id="l00384" name="l00384"></a><span class="lineno"> 384</span> <a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#af5093d05e84f4d23e3ea7f1413e88e40">Logger</a>.LogWarning(</div>
<div class="line"><a id="l00385" name="l00385"></a><span class="lineno"> 385</span> <span class="stringliteral">&quot;GitHub access token disappeared during deployment, can&#39;t update to {deploymentState}!&quot;</span>,</div>
<div class="line"><a id="l00386" name="l00386"></a><span class="lineno"> 386</span> deploymentState);</div>
<div class="line"><a id="l00387" name="l00387"></a><span class="lineno"> 387</span> <span class="keywordflow">return</span>;</div>
<div class="line"><a id="l00388" name="l00388"></a><span class="lineno"> 388</span> }</div>
<div class="line"><a id="l00389" name="l00389"></a><span class="lineno"> 389</span> </div>
<div class="line"><a id="l00390" name="l00390"></a><span class="lineno"> 390</span> var gitHubService = await <a class="code hl_variable" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a0cc2207612ce4acf4e38b326ae6f9d02">gitHubServiceFactory</a>.<a class="code hl_function" href="interface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_git_hub_service_factory.html#a93de0a6eeb420eec2ecaa935ebabc7b9">CreateService</a>(</div>
<div class="line"><a id="l00391" name="l00391"></a><span class="lineno"> 391</span> gitHubAccessToken,</div>
<div class="line"><a id="l00392" name="l00392"></a><span class="lineno"> 392</span> <span class="keyword">new</span> <a class="code hl_class" href="class_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_repository_identifier.html">RepositoryIdentifier</a>(compileJob.<a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#ac12e2d50eb98927e394618b97b0ce9ef">GitHubRepoId</a>.Value),</div>
<div class="line"><a id="l00393" name="l00393"></a><span class="lineno"> 393</span> cancellationToken);</div>
<div class="line"><a id="l00394" name="l00394"></a><span class="lineno"> 394</span> </div>
<div class="line"><a id="l00395" name="l00395"></a><span class="lineno"> 395</span> <span class="keywordflow">if</span> (gitHubService == <span class="keyword">null</span>)</div>
<div class="line"><a id="l00396" name="l00396"></a><span class="lineno"> 396</span> {</div>
<div class="line"><a id="l00397" name="l00397"></a><span class="lineno"> 397</span> <a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#af5093d05e84f4d23e3ea7f1413e88e40">Logger</a>.LogWarning(</div>
<div class="line"><a id="l00398" name="l00398"></a><span class="lineno"> 398</span> <span class="stringliteral">&quot;GitHub authentication failed, can&#39;t update to {deploymentState}!&quot;</span>,</div>
<div class="line"><a id="l00399" name="l00399"></a><span class="lineno"> 399</span> deploymentState);</div>
<div class="line"><a id="l00400" name="l00400"></a><span class="lineno"> 400</span> <span class="keywordflow">return</span>;</div>
<div class="line"><a id="l00401" name="l00401"></a><span class="lineno"> 401</span> }</div>
<div class="line"><a id="l00402" name="l00402"></a><span class="lineno"> 402</span> </div>
<div class="line"><a id="l00403" name="l00403"></a><span class="lineno"> 403</span> <span class="keywordflow">try</span></div>
<div class="line"><a id="l00404" name="l00404"></a><span class="lineno"> 404</span> {</div>
<div class="line"><a id="l00405" name="l00405"></a><span class="lineno"> 405</span> await gitHubService.CreateDeploymentStatus(</div>
<div class="line"><a id="l00406" name="l00406"></a><span class="lineno"> 406</span> <span class="keyword">new</span> NewDeploymentStatus(deploymentState)</div>
<div class="line"><a id="l00407" name="l00407"></a><span class="lineno"> 407</span> {</div>
<div class="line"><a id="l00408" name="l00408"></a><span class="lineno"> 408</span> Description = description,</div>
<div class="line"><a id="l00409" name="l00409"></a><span class="lineno"> 409</span> },</div>
<div class="line"><a id="l00410" name="l00410"></a><span class="lineno"> 410</span> compileJob.<a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#ac12e2d50eb98927e394618b97b0ce9ef">GitHubRepoId</a>.Value,</div>
<div class="line"><a id="l00411" name="l00411"></a><span class="lineno"> 411</span> compileJob.<a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a552bf96fdea84a75e32f111a7c96d931">GitHubDeploymentId</a>.Value,</div>
<div class="line"><a id="l00412" name="l00412"></a><span class="lineno"> 412</span> cancellationToken);</div>
<div class="line"><a id="l00413" name="l00413"></a><span class="lineno"> 413</span> }</div>
<div class="line"><a id="l00414" name="l00414"></a><span class="lineno"> 414</span> <span class="keywordflow">catch</span> (<a class="code hl_class" href="class_exception.html">Exception</a> ex) when (ex is not OperationCanceledException)</div>
<div class="line"><a id="l00415" name="l00415"></a><span class="lineno"> 415</span> {</div>
<div class="line"><a id="l00416" name="l00416"></a><span class="lineno"> 416</span> <a class="code hl_property" href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#af5093d05e84f4d23e3ea7f1413e88e40">Logger</a>.LogWarning(ex, <span class="stringliteral">&quot;Error updating GitHub deployment!&quot;</span>);</div>
<div class="line"><a id="l00417" name="l00417"></a><span class="lineno"> 417</span> }</div>
<div class="line"><a id="l00418" name="l00418"></a><span class="lineno"> 418</span> }</div>
</div>
<div class="line"><a id="l00419" name="l00419"></a><span class="lineno"> 419</span> }</div>
</div>
<div class="line"><a id="l00420" name="l00420"></a><span class="lineno"> 420</span>}</div>
<div class="ttc" id="aclass_exception_html"><div class="ttname"><a href="class_exception.html">Exception</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_revision_information_html_ac93d5aef3a8222c5b5ceed6df8e7b309"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_revision_information.html#ac93d5aef3a8222c5b5ceed6df8e7b309">Tgstation.Server.Api.Models.Internal.RevisionInformation.CommitSha</a></div><div class="ttdeci">string? CommitSha</div><div class="ttdoc">The revision SHA.</div><div class="ttdef"><b>Definition</b> <a href="_tgstation_8_server_8_api_2_models_2_internal_2_revision_information_8cs_source.html#l00016">RevisionInformation.cs:16</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository_settings_html_a0725fe7a401590e54cd730204a64d9d2"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository_settings.html#a0725fe7a401590e54cd730204a64d9d2">Tgstation.Server.Api.Models.RepositorySettings.CreateGitHubDeployments</a></div><div class="ttdeci">bool? CreateGitHubDeployments</div><div class="ttdoc">If GitHub deployments should be created. Requires AccessUser, AccessToken, and PushTestMergeCommits t...</div><div class="ttdef"><b>Definition</b> <a href="_tgstation_8_server_8_api_2_models_2_repository_settings_8cs_source.html#l00054">RepositorySettings.cs:54</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository_settings_html_ab0bca804385494f141395c333ea81221"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_api_1_1_models_1_1_repository_settings.html#ab0bca804385494f141395c333ea81221">Tgstation.Server.Api.Models.RepositorySettings.AccessToken</a></div><div class="ttdeci">string? AccessToken</div><div class="ttdoc">The token/password to access the git repository with. Can also be a TGS encoded app private key....</div><div class="ttdef"><b>Definition</b> <a href="_tgstation_8_server_8_api_2_models_2_repository_settings_8cs_source.html#l00042">RepositorySettings.cs:42</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager_html"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html">Tgstation.Server.Host.Components.Deployment.Remote.BaseRemoteDeploymentManager</a></div><div class="ttdoc">Base class for implementing IRemoteDeploymentManagers.</div><div class="ttdef"><b>Definition</b> <a href="_base_remote_deployment_manager_8cs_source.html#l00019">BaseRemoteDeploymentManager.cs:20</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager_html_a3217b057f1e1bd47bdd167178f257645"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#a3217b057f1e1bd47bdd167178f257645">Tgstation.Server.Host.Components.Deployment.Remote.BaseRemoteDeploymentManager.Metadata</a></div><div class="ttdeci">Api.Models.Instance Metadata</div><div class="ttdoc">The Api.Models.Instance for the BaseRemoteDeploymentManager.</div><div class="ttdef"><b>Definition</b> <a href="_base_remote_deployment_manager_8cs_source.html#l00029">BaseRemoteDeploymentManager.cs:29</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager_html_a39e6fbd8125e89d030446a410b25e5e1"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#a39e6fbd8125e89d030446a410b25e5e1">Tgstation.Server.Host.Components.Deployment.Remote.BaseRemoteDeploymentManager.DeploymentMsgHeaderStart</a></div><div class="ttdeci">const string DeploymentMsgHeaderStart</div><div class="ttdoc">The header comment that begins every deployment message comment/note.</div><div class="ttdef"><b>Definition</b> <a href="_base_remote_deployment_manager_8cs_source.html#l00024">BaseRemoteDeploymentManager.cs:24</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager_html_aa2822366e4d87047a3c7e04cb7684432"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#aa2822366e4d87047a3c7e04cb7684432">Tgstation.Server.Host.Components.Deployment.Remote.BaseRemoteDeploymentManager.activationCallbacks</a></div><div class="ttdeci">readonly ConcurrentDictionary&lt; long, Action&lt; bool &gt; &gt; activationCallbacks</div><div class="ttdoc">A map of CompileJob Api.Models.EntityId.Ids to activation callback Action&lt;T1&gt;s.</div><div class="ttdef"><b>Definition</b> <a href="_base_remote_deployment_manager_8cs_source.html#l00039">BaseRemoteDeploymentManager.cs:39</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager_html_af5093d05e84f4d23e3ea7f1413e88e40"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_base_remote_deployment_manager.html#af5093d05e84f4d23e3ea7f1413e88e40">Tgstation.Server.Host.Components.Deployment.Remote.BaseRemoteDeploymentManager.Logger</a></div><div class="ttdeci">ILogger&lt; BaseRemoteDeploymentManager &gt; Logger</div><div class="ttdoc">The ILogger for the BaseRemoteDeploymentManager.</div><div class="ttdef"><b>Definition</b> <a href="_base_remote_deployment_manager_8cs_source.html#l00034">BaseRemoteDeploymentManager.cs:34</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager_html"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html">Tgstation.Server.Host.Components.Deployment.Remote.GitHubRemoteDeploymentManager</a></div><div class="ttdoc">IRemoteDeploymentManager for GitHub.com.</div><div class="ttdef"><b>Definition</b> <a href="_git_hub_remote_deployment_manager_8cs_source.html#l00025">GitHubRemoteDeploymentManager.cs:26</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager_html_a00647623f9070251136cf45351db7f8f"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a00647623f9070251136cf45351db7f8f">Tgstation.Server.Host.Components.Deployment.Remote.GitHubRemoteDeploymentManager.CommentOnTestMergeSource</a></div><div class="ttdeci">override async ValueTask CommentOnTestMergeSource(RepositorySettings repositorySettings, string remoteRepositoryOwner, string remoteRepositoryName, string comment, int testMergeNumber, CancellationToken cancellationToken)</div><div class="ttdef"><b>Definition</b> <a href="_git_hub_remote_deployment_manager_8cs_source.html#l00263">GitHubRemoteDeploymentManager.cs:263</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager_html_a05daf039a3547769d54da9136bbbc22c"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a05daf039a3547769d54da9136bbbc22c">Tgstation.Server.Host.Components.Deployment.Remote.GitHubRemoteDeploymentManager.databaseContextFactory</a></div><div class="ttdeci">readonly IDatabaseContextFactory databaseContextFactory</div><div class="ttdoc">The IDatabaseContextFactory for the GitHubRemoteDeploymentManager.</div><div class="ttdef"><b>Definition</b> <a href="_git_hub_remote_deployment_manager_8cs_source.html#l00030">GitHubRemoteDeploymentManager.cs:30</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager_html_a0cc2207612ce4acf4e38b326ae6f9d02"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a0cc2207612ce4acf4e38b326ae6f9d02">Tgstation.Server.Host.Components.Deployment.Remote.GitHubRemoteDeploymentManager.gitHubServiceFactory</a></div><div class="ttdeci">readonly IGitHubServiceFactory gitHubServiceFactory</div><div class="ttdoc">The IGitHubServiceFactory for the GitHubRemoteDeploymentManager.</div><div class="ttdef"><b>Definition</b> <a href="_git_hub_remote_deployment_manager_8cs_source.html#l00035">GitHubRemoteDeploymentManager.cs:35</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager_html_a21a61ea40a81b3f754fa230917fb7c56"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a21a61ea40a81b3f754fa230917fb7c56">Tgstation.Server.Host.Components.Deployment.Remote.GitHubRemoteDeploymentManager.UpdateDeployment</a></div><div class="ttdeci">async ValueTask UpdateDeployment(CompileJob compileJob, string description, DeploymentState deploymentState, CancellationToken cancellationToken)</div><div class="ttdoc">Update the deployment for a given compileJob .</div><div class="ttdef"><b>Definition</b> <a href="_git_hub_remote_deployment_manager_8cs_source.html#l00357">GitHubRemoteDeploymentManager.cs:357</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager_html_a2873ee4483a0a0912e4dbdecff19a853"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a2873ee4483a0a0912e4dbdecff19a853">Tgstation.Server.Host.Components.Deployment.Remote.GitHubRemoteDeploymentManager.RemoveMergedTestMerges</a></div><div class="ttdeci">override async ValueTask&lt; IReadOnlyCollection&lt; TestMerge &gt; &gt; RemoveMergedTestMerges(IRepository repository, RepositorySettings repositorySettings, RevisionInformation revisionInformation, CancellationToken cancellationToken)</div><div class="ttdoc">Get the updated list of TestMerges for an origin merge.A ValueTask&lt;TResult&gt; resulting in the IReadOnl...</div><div class="ttdef"><b>Definition</b> <a href="_git_hub_remote_deployment_manager_8cs_source.html#l00170">GitHubRemoteDeploymentManager.cs:170</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager_html_a336615f2d7a9fc05574ef6b4f46f14f8"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a336615f2d7a9fc05574ef6b4f46f14f8">Tgstation.Server.Host.Components.Deployment.Remote.GitHubRemoteDeploymentManager.FormatTestMergeRemoval</a></div><div class="ttdeci">override string FormatTestMergeRemoval(RepositorySettings repositorySettings, CompileJob compileJob, TestMerge testMerge, string remoteRepositoryOwner, string remoteRepositoryName)</div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager_html_a4d3633c4ac4010ac54b65596d63adf92"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a4d3633c4ac4010ac54b65596d63adf92">Tgstation.Server.Host.Components.Deployment.Remote.GitHubRemoteDeploymentManager.GitHubRemoteDeploymentManager</a></div><div class="ttdeci">GitHubRemoteDeploymentManager(IDatabaseContextFactory databaseContextFactory, IGitHubServiceFactory gitHubServiceFactory, ILogger&lt; GitHubRemoteDeploymentManager &gt; logger, Api.Models.Instance metadata, ConcurrentDictionary&lt; long, Action&lt; bool &gt; &gt; activationCallbacks)</div><div class="ttdoc">Initializes a new instance of the GitHubRemoteDeploymentManager class.</div><div class="ttdef"><b>Definition</b> <a href="_git_hub_remote_deployment_manager_8cs_source.html#l00045">GitHubRemoteDeploymentManager.cs:45</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager_html_a5a724c8be6cd91a16ca3f7ceb971fb28"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a5a724c8be6cd91a16ca3f7ceb971fb28">Tgstation.Server.Host.Components.Deployment.Remote.GitHubRemoteDeploymentManager.MarkInactiveImpl</a></div><div class="ttdeci">override ValueTask MarkInactiveImpl(CompileJob compileJob, CancellationToken cancellationToken)</div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager_html_a61a329748d638248f2404445a9e8d886"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a61a329748d638248f2404445a9e8d886">Tgstation.Server.Host.Components.Deployment.Remote.GitHubRemoteDeploymentManager.FailDeployment</a></div><div class="ttdeci">override ValueTask FailDeployment(CompileJob compileJob, string errorMessage, CancellationToken cancellationToken)</div><div class="ttdoc">Fail a deployment for a given compileJob .A ValueTask representing the running operation.</div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager_html_a6daaca0929dd102bb1f69de7b4bcc5df"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a6daaca0929dd102bb1f69de7b4bcc5df">Tgstation.Server.Host.Components.Deployment.Remote.GitHubRemoteDeploymentManager.StartDeployment</a></div><div class="ttdeci">override async ValueTask StartDeployment(Api.Models.Internal.IGitRemoteInformation remoteInformation, CompileJob compileJob, CancellationToken cancellationToken)</div><div class="ttdoc">Start a deployment for a given compileJob .A ValueTask representing the running operation.</div><div class="ttdef"><b>Definition</b> <a href="_git_hub_remote_deployment_manager_8cs_source.html#l00058">GitHubRemoteDeploymentManager.cs:58</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager_html_a848f31d9c56d2964293c43e71ddfbb04"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a848f31d9c56d2964293c43e71ddfbb04">Tgstation.Server.Host.Components.Deployment.Remote.GitHubRemoteDeploymentManager.FormatTestMerge</a></div><div class="ttdeci">override string FormatTestMerge(RepositorySettings repositorySettings, CompileJob compileJob, TestMerge testMerge, string remoteRepositoryOwner, string remoteRepositoryName, bool updated)</div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager_html_a8756842313452447bfe3b68da144f0c8"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#a8756842313452447bfe3b68da144f0c8">Tgstation.Server.Host.Components.Deployment.Remote.GitHubRemoteDeploymentManager.StageDeploymentImpl</a></div><div class="ttdeci">override ValueTask StageDeploymentImpl(CompileJob compileJob, CancellationToken cancellationToken)</div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager_html_aa02b27cb9972b2e0596675c6e58941fd"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_1_1_git_hub_remote_deployment_manager.html#aa02b27cb9972b2e0596675c6e58941fd">Tgstation.Server.Host.Components.Deployment.Remote.GitHubRemoteDeploymentManager.ApplyDeploymentImpl</a></div><div class="ttdeci">override ValueTask ApplyDeploymentImpl(CompileJob compileJob, CancellationToken cancellationToken)</div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job_html"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html">Tgstation.Server.Host.Models.CompileJob</a></div><div class="ttdef"><b>Definition</b> <a href="_tgstation_8_server_8_host_2_models_2_compile_job_8cs_source.html#l00010">CompileJob.cs:11</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job_html_a30c14e7fc4c770ff11cd0f10be4fb4dd"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a30c14e7fc4c770ff11cd0f10be4fb4dd">Tgstation.Server.Host.Models.CompileJob.RevisionInformation</a></div><div class="ttdeci">RevisionInformation RevisionInformation</div><div class="ttdoc">See CompileJobResponse.RevisionInformation.</div><div class="ttdef"><b>Definition</b> <a href="_tgstation_8_server_8_host_2_models_2_compile_job_8cs_source.html#l00027">CompileJob.cs:27</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job_html_a552bf96fdea84a75e32f111a7c96d931"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#a552bf96fdea84a75e32f111a7c96d931">Tgstation.Server.Host.Models.CompileJob.GitHubDeploymentId</a></div><div class="ttdeci">long? GitHubDeploymentId</div><div class="ttdoc">The GitHub deployment ID associated with the CompileJob if any.</div><div class="ttdef"><b>Definition</b> <a href="_tgstation_8_server_8_host_2_models_2_compile_job_8cs_source.html#l00063">CompileJob.cs:63</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job_html_ac12e2d50eb98927e394618b97b0ce9ef"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_compile_job.html#ac12e2d50eb98927e394618b97b0ce9ef">Tgstation.Server.Host.Models.CompileJob.GitHubRepoId</a></div><div class="ttdeci">long? GitHubRepoId</div><div class="ttdoc">The source GitHub repository the deployment came from if any.</div><div class="ttdef"><b>Definition</b> <a href="_tgstation_8_server_8_host_2_models_2_compile_job_8cs_source.html#l00058">CompileJob.cs:58</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_models_1_1_job_html"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_job.html">Tgstation.Server.Host.Models.Job</a></div><div class="ttdef"><b>Definition</b> <a href="_tgstation_8_server_8_host_2_models_2_job_8cs_source.html#l00014">Job.cs:16</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings_html"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_repository_settings.html">Tgstation.Server.Host.Models.RepositorySettings</a></div><div class="ttdef"><b>Definition</b> <a href="_tgstation_8_server_8_host_2_models_2_repository_settings_8cs_source.html#l00008">RepositorySettings.cs:9</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information_html"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html">Tgstation.Server.Host.Models.RevisionInformation</a></div><div class="ttdef"><b>Definition</b> <a href="_tgstation_8_server_8_host_2_models_2_revision_information_8cs_source.html#l00009">RevisionInformation.cs:10</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information_html_a099c30ffa1bc05ed492ce8b3d9e3cd4c"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_revision_information.html#a099c30ffa1bc05ed492ce8b3d9e3cd4c">Tgstation.Server.Host.Models.RevisionInformation.ActiveTestMerges</a></div><div class="ttdeci">ICollection&lt; RevInfoTestMerge &gt;? ActiveTestMerges</div><div class="ttdoc">See Api.Models.RevisionInformation.ActiveTestMerges.</div><div class="ttdef"><b>Definition</b> <a href="_tgstation_8_server_8_host_2_models_2_revision_information_8cs_source.html#l00035">RevisionInformation.cs:35</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge_html"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_models_1_1_test_merge.html">Tgstation.Server.Host.Models.TestMerge</a></div><div class="ttdef"><b>Definition</b> <a href="_tgstation_8_server_8_host_2_models_2_test_merge_8cs_source.html#l00008">TestMerge.cs:9</a></div></div>
<div class="ttc" id="aclass_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_repository_identifier_html"><div class="ttname"><a href="class_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_repository_identifier.html">Tgstation.Server.Host.Utils.GitHub.RepositoryIdentifier</a></div><div class="ttdoc">Identifies a repository either by its RepositoryId or Owner and Name.</div><div class="ttdef"><b>Definition</b> <a href="_repository_identifier_8cs_source.html#l00012">RepositoryIdentifier.cs:13</a></div></div>
<div class="ttc" id="ainterface_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_i_git_remote_information_html_a16b1a16989886b7fe3beab0a46b83a4b"><div class="ttname"><a href="interface_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_i_git_remote_information.html#a16b1a16989886b7fe3beab0a46b83a4b">Tgstation.Server.Api.Models.Internal.IGitRemoteInformation.RemoteRepositoryName</a></div><div class="ttdeci">string? RemoteRepositoryName</div><div class="ttdoc">If RemoteGitProvider is not RemoteGitProvider.Unknown this will be set with the name of the repositor...</div><div class="ttdef"><b>Definition</b> <a href="_i_git_remote_information_8cs_source.html#l00021">IGitRemoteInformation.cs:21</a></div></div>
<div class="ttc" id="ainterface_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_i_git_remote_information_html_a337342e3a22ef245c1744c32ef313ec0"><div class="ttname"><a href="interface_tgstation_1_1_server_1_1_api_1_1_models_1_1_internal_1_1_i_git_remote_information.html#a337342e3a22ef245c1744c32ef313ec0">Tgstation.Server.Api.Models.Internal.IGitRemoteInformation.RemoteRepositoryOwner</a></div><div class="ttdeci">string? RemoteRepositoryOwner</div><div class="ttdoc">If RemoteGitProvider is not RemoteGitProvider.Unknown this will be set with the owner of the reposito...</div><div class="ttdef"><b>Definition</b> <a href="_i_git_remote_information_8cs_source.html#l00016">IGitRemoteInformation.cs:16</a></div></div>
<div class="ttc" id="ainterface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_html"><div class="ttname"><a href="interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html">Tgstation.Server.Host.Components.Repository.IRepository</a></div><div class="ttdoc">Represents an on-disk git repository.</div><div class="ttdef"><b>Definition</b> <a href="_i_repository_8cs_source.html#l00013">IRepository.cs:14</a></div></div>
<div class="ttc" id="ainterface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository_html_ab8e15b3dd9fe05cabc167ad5e6b3cdcd"><div class="ttname"><a href="interface_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_1_1_i_repository.html#ab8e15b3dd9fe05cabc167ad5e6b3cdcd">Tgstation.Server.Host.Components.Repository.IRepository.CommittishIsParent</a></div><div class="ttdeci">Task&lt; bool &gt; CommittishIsParent(string committish, CancellationToken cancellationToken)</div><div class="ttdoc">Check if a given committish is a parent of the current Head.</div></div>
<div class="ttc" id="ainterface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context_factory_html"><div class="ttname"><a href="interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context_factory.html">Tgstation.Server.Host.Database.IDatabaseContextFactory</a></div><div class="ttdoc">Factory for scoping usage of IDatabaseContexts. Meant for use by Components.</div><div class="ttdef"><b>Definition</b> <a href="_i_database_context_factory_8cs_source.html#l00009">IDatabaseContextFactory.cs:10</a></div></div>
<div class="ttc" id="ainterface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context_factory_html_a1da664d7237dbec5a6cb9ce04b79ccc1"><div class="ttname"><a href="interface_tgstation_1_1_server_1_1_host_1_1_database_1_1_i_database_context_factory.html#a1da664d7237dbec5a6cb9ce04b79ccc1">Tgstation.Server.Host.Database.IDatabaseContextFactory.UseContext</a></div><div class="ttdeci">ValueTask UseContext(Func&lt; IDatabaseContext, ValueTask &gt; operation)</div><div class="ttdoc">Run an operation in the scope of an IDatabaseContext.</div></div>
<div class="ttc" id="ainterface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_authenticated_git_hub_service_html"><div class="ttname"><a href="interface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_authenticated_git_hub_service.html">Tgstation.Server.Host.Utils.GitHub.IAuthenticatedGitHubService</a></div><div class="ttdoc">IGitHubService that exposes functions that require authentication.</div><div class="ttdef"><b>Definition</b> <a href="_i_authenticated_git_hub_service_8cs_source.html#l00011">IAuthenticatedGitHubService.cs:12</a></div></div>
<div class="ttc" id="ainterface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_authenticated_git_hub_service_html_a6ec88b25682381d11b7d39a4414383e0"><div class="ttname"><a href="interface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_authenticated_git_hub_service.html#a6ec88b25682381d11b7d39a4414383e0">Tgstation.Server.Host.Utils.GitHub.IAuthenticatedGitHubService.CreateDeployment</a></div><div class="ttdeci">ValueTask&lt; long &gt; CreateDeployment(NewDeployment newDeployment, string repoOwner, string repoName, CancellationToken cancellationToken)</div><div class="ttdoc">Create a newDeployment on a target repostiory.</div></div>
<div class="ttc" id="ainterface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_authenticated_git_hub_service_html_afe4ffe75eea54d6dd06187485b9ccfea"><div class="ttname"><a href="interface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_authenticated_git_hub_service.html#afe4ffe75eea54d6dd06187485b9ccfea">Tgstation.Server.Host.Utils.GitHub.IAuthenticatedGitHubService.CreateDeploymentStatus</a></div><div class="ttdeci">Task CreateDeploymentStatus(NewDeploymentStatus newDeploymentStatus, string repoOwner, string repoName, long deploymentId, CancellationToken cancellationToken)</div><div class="ttdoc">Create a newDeploymentStatus on a target deployment.</div></div>
<div class="ttc" id="ainterface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_git_hub_service_factory_html"><div class="ttname"><a href="interface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_git_hub_service_factory.html">Tgstation.Server.Host.Utils.GitHub.IGitHubServiceFactory</a></div><div class="ttdoc">Factory for IGitHubServices.</div><div class="ttdef"><b>Definition</b> <a href="_i_git_hub_service_factory_8cs_source.html#l00009">IGitHubServiceFactory.cs:10</a></div></div>
<div class="ttc" id="ainterface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_git_hub_service_factory_html_a93de0a6eeb420eec2ecaa935ebabc7b9"><div class="ttname"><a href="interface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_git_hub_service_factory.html#a93de0a6eeb420eec2ecaa935ebabc7b9">Tgstation.Server.Host.Utils.GitHub.IGitHubServiceFactory.CreateService</a></div><div class="ttdeci">ValueTask&lt; IGitHubService &gt; CreateService(CancellationToken cancellationToken)</div><div class="ttdoc">Create a IGitHubService.</div></div>
<div class="ttc" id="ainterface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_git_hub_service_html"><div class="ttname"><a href="interface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_git_hub_service.html">Tgstation.Server.Host.Utils.GitHub.IGitHubService</a></div><div class="ttdoc">Service for interacting with the GitHub API.</div><div class="ttdef"><b>Definition</b> <a href="_i_git_hub_service_8cs_source.html#l00015">IGitHubService.cs:16</a></div></div>
<div class="ttc" id="ainterface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_git_hub_service_html_a74b8e7bffa82ab1a72c5e72259b0823e"><div class="ttname"><a href="interface_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_1_1_i_git_hub_service.html#a74b8e7bffa82ab1a72c5e72259b0823e">Tgstation.Server.Host.Utils.GitHub.IGitHubService.GetRepositoryId</a></div><div class="ttdeci">ValueTask&lt; long &gt; GetRepositoryId(string repoOwner, string repoName, CancellationToken cancellationToken)</div><div class="ttdoc">Get a target repostiory's ID.</div></div>
<div class="ttc" id="anamespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote_html"><div class="ttname"><a href="namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_deployment_1_1_remote.html">Tgstation.Server.Host.Components.Deployment.Remote</a></div><div class="ttdef"><b>Definition</b> <a href="_base_remote_deployment_manager_8cs_source.html#l00014">BaseRemoteDeploymentManager.cs:15</a></div></div>
<div class="ttc" id="anamespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository_html"><div class="ttname"><a href="namespace_tgstation_1_1_server_1_1_host_1_1_components_1_1_repository.html">Tgstation.Server.Host.Components.Repository</a></div><div class="ttdef"><b>Definition</b> <a href="_default_git_remote_features_8cs_source.html#l00007">DefaultGitRemoteFeatures.cs:8</a></div></div>
<div class="ttc" id="anamespace_tgstation_1_1_server_1_1_host_1_1_database_html"><div class="ttname"><a href="namespace_tgstation_1_1_server_1_1_host_1_1_database.html">Tgstation.Server.Host.Database</a></div><div class="ttdef"><b>Definition</b> <a href="_database_collection_8cs_source.html#l00009">DatabaseCollection.cs:10</a></div></div>
<div class="ttc" id="anamespace_tgstation_1_1_server_1_1_host_1_1_models_html"><div class="ttname"><a href="namespace_tgstation_1_1_server_1_1_host_1_1_models.html">Tgstation.Server.Host.Models</a></div><div class="ttdef"><b>Definition</b> <a href="_models_2_chat_bot_8cs_source.html#l00008">ChatBot.cs:9</a></div></div>
<div class="ttc" id="anamespace_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub_html"><div class="ttname"><a href="namespace_tgstation_1_1_server_1_1_host_1_1_utils_1_1_git_hub.html">Tgstation.Server.Host.Utils.GitHub</a></div><div class="ttdef"><b>Definition</b> <a href="_git_hub_client_factory_8cs_source.html#l00022">GitHubClientFactory.cs:23</a></div></div>
</div><!-- fragment --></div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by&#160;<a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.8
</small></address>
</body>
</html>