public async getApiChanesPrsForVersion()

in src/common/github-service.ts [208:214]


  public async getApiChanesPrsForVersion(version: string) {
    const options = this.octokit.search.issuesAndPullRequests.endpoint.merge({
      q: `repo:${GITHUB_OWNER}/${this.repoName} label:release_note:plugin_api_changes label:${version}`,
    });
    const items = await this.octokit.paginate<PrItem>(options);
    return filterPrsForVersion(items, version);
  }