private static string SettingLastValidCommitKey(GitHubApi.GitHubRepository repository)
 {
     return($"{repository.Name}-LastValidCommit");
 }
示例#2
0
 public RepositoryInfo(IStatusInfoCollection ownerCollection, GitHubApi.GitHubRepository repository)
 {
     OwnerCollection = ownerCollection;
     Source          = repository;
     IsValid         = true;
 }
 private static string SettingLastCheckDateKey(GitHubApi.GitHubRepository repository)
 {
     return($"{repository.Name}-LastCheckDate");
 }