private async initializeRepo()

in src/common/github-service.ts [63:73]


  private async initializeRepo(): Promise<void> {
    try {
      const response = await this.octokit.repos.get({
        owner: GITHUB_OWNER,
        repo: this.repoName,
      });
      this.repoId = response.data.id;
    } catch (error) {
      console.error('Error fetching repository info:', error);
    }
  }