Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Commit

Permalink
chore: build dist (#730)
Browse files Browse the repository at this point in the history
Build dist PR
  • Loading branch information
google-github-actions-bot committed Mar 7, 2023
1 parent a085f7b commit 4e9dcc5
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -86801,7 +86801,7 @@ class GitHub {
* @throws {GitHubAPIError} on an API error
*/
this.commentOnIssue = wrapAsync(async (comment, number) => {
this.logger.debug(`adding comment to https://github.com/${this.repository.owner}/${this.repository.repo}/issue/${number}`);
this.logger.debug(`adding comment to https://github.com/${this.repository.owner}/${this.repository.repo}/issues/${number}`);
const resp = await this.octokit.issues.createComment({
owner: this.repository.owner,
repo: this.repository.repo,
Expand Down Expand Up @@ -91756,6 +91756,7 @@ class JavaYoshiMonoRepo extends java_1.Java {
const pomFilesSearch = this.github.findFilesByFilenameAndRef('pom.xml', this.targetBranch, this.path);
const buildFilesSearch = this.github.findFilesByFilenameAndRef('build.gradle', this.targetBranch, this.path);
const dependenciesSearch = this.github.findFilesByFilenameAndRef('dependencies.properties', this.targetBranch, this.path);
const readmeFilesSearch = this.github.findFilesByFilenameAndRef('README.md', this.targetBranch, this.path);
const pomFiles = await pomFilesSearch;
pomFiles.forEach(path => {
updates.push({
Expand Down Expand Up @@ -91792,6 +91793,18 @@ class JavaYoshiMonoRepo extends java_1.Java {
}),
});
});
const readmeFiles = await readmeFilesSearch;
readmeFiles.forEach(path => {
updates.push({
path: this.addPath(path),
createIfMissing: false,
updater: new java_update_1.JavaUpdate({
version,
versionsMap,
isSnapshot: options.isSnapshot,
}),
});
});
this.extraFiles.forEach(extraFile => {
if (typeof extraFile === 'object') {
return;
Expand Down Expand Up @@ -119554,7 +119567,7 @@ module.exports = {};
/***/ ((module) => {

"use strict";
module.exports = {"i8":"15.7.0"};
module.exports = {"i8":"15.8.0"};

/***/ }),

Expand Down

0 comments on commit 4e9dcc5

Please sign in to comment.