mirror of
https://github.com/joaquinjsb/gitea-release-please-action
synced 2026-05-12 13:11:41 +02:00
committed by
GitHub
parent
a085f7b3e4
commit
4e9dcc58bb
17
dist/index.js
vendored
17
dist/index.js
vendored
@@ -86801,7 +86801,7 @@ class GitHub {
|
|||||||
* @throws {GitHubAPIError} on an API error
|
* @throws {GitHubAPIError} on an API error
|
||||||
*/
|
*/
|
||||||
this.commentOnIssue = wrapAsync(async (comment, number) => {
|
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({
|
const resp = await this.octokit.issues.createComment({
|
||||||
owner: this.repository.owner,
|
owner: this.repository.owner,
|
||||||
repo: this.repository.repo,
|
repo: this.repository.repo,
|
||||||
@@ -91756,6 +91756,7 @@ class JavaYoshiMonoRepo extends java_1.Java {
|
|||||||
const pomFilesSearch = this.github.findFilesByFilenameAndRef('pom.xml', this.targetBranch, this.path);
|
const pomFilesSearch = this.github.findFilesByFilenameAndRef('pom.xml', this.targetBranch, this.path);
|
||||||
const buildFilesSearch = this.github.findFilesByFilenameAndRef('build.gradle', 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 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;
|
const pomFiles = await pomFilesSearch;
|
||||||
pomFiles.forEach(path => {
|
pomFiles.forEach(path => {
|
||||||
updates.push({
|
updates.push({
|
||||||
@@ -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 => {
|
this.extraFiles.forEach(extraFile => {
|
||||||
if (typeof extraFile === 'object') {
|
if (typeof extraFile === 'object') {
|
||||||
return;
|
return;
|
||||||
@@ -119554,7 +119567,7 @@ module.exports = {};
|
|||||||
/***/ ((module) => {
|
/***/ ((module) => {
|
||||||
|
|
||||||
"use strict";
|
"use strict";
|
||||||
module.exports = {"i8":"15.7.0"};
|
module.exports = {"i8":"15.8.0"};
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user