1
0
mirror of https://github.com/joaquinjsb/gitea-release-please-action synced 2026-05-14 15:11:38 +02:00

chore: build dist release-please-action (#278)

This commit is contained in:
google-github-actions-bot
2021-03-24 15:15:28 -05:00
committed by GitHub
parent 80ebc45261
commit 3428959728

16
dist/index.js vendored
View File

@@ -4182,7 +4182,7 @@ exports.withCustomRequest = withCustomRequest;
Object.defineProperty(exports, "__esModule", ({ value: true })); Object.defineProperty(exports, "__esModule", ({ value: true }));
const VERSION = "2.13.2"; const VERSION = "2.13.3";
/** /**
* Some list response that can be paginated have a different response structure * Some list response that can be paginated have a different response structure
@@ -51307,19 +51307,21 @@ class Manifest {
} }
return releaseAs; return releaseAs;
} }
async getPackagesToRelease(commits, sha) { async getPackagesToRelease(allCommits, sha) {
const packages = (await this.getConfigJson()).parsedPackages; const packages = (await this.getConfigJson()).parsedPackages;
const [manifestVersions, atSha] = await this.getManifestVersions(sha); const [manifestVersions, atSha] = await this.getManifestVersions(sha);
const cs = new commit_split_1.CommitSplit({ const cs = new commit_split_1.CommitSplit({
includeEmpty: true, includeEmpty: true,
packagePaths: packages.map(p => p.path), packagePaths: packages.map(p => p.path),
}); });
const commitsPerPath = cs.split(commits); const commitsPerPath = cs.split(allCommits);
const packagesToRelease = {}; const packagesToRelease = {};
const missingVersionPaths = []; const missingVersionPaths = [];
const defaultBranch = await this.gh.getDefaultBranch(); const defaultBranch = await this.gh.getDefaultBranch();
for (const pkg of packages) { for (const pkg of packages) {
const commits = commitsPerPath[pkg.path]; // The special path of '.' indicates the root module is being released
// in this case, use the entire list of commits:
const commits = pkg.path === '.' ? allCommits : commitsPerPath[pkg.path];
if (!commits || commits.length === 0) { if (!commits || commits.length === 0) {
continue; continue;
} }
@@ -51648,7 +51650,9 @@ class ReleasePR {
this.changelogPath = 'CHANGELOG.md'; this.changelogPath = 'CHANGELOG.md';
this.bumpMinorPreMajor = options.bumpMinorPreMajor || false; this.bumpMinorPreMajor = options.bumpMinorPreMajor || false;
this.labels = (_a = options.labels) !== null && _a !== void 0 ? _a : constants_1.DEFAULT_LABELS; this.labels = (_a = options.labels) !== null && _a !== void 0 ? _a : constants_1.DEFAULT_LABELS;
this.path = options.path; // undefined represents the root path of the library, if the special
// '.' path is provided, simply ignore it:
this.path = options.path !== '.' ? options.path : undefined;
this.packageName = options.packageName || ''; this.packageName = options.packageName || '';
this.monorepoTags = options.monorepoTags || false; this.monorepoTags = options.monorepoTags || false;
this.releaseAs = options.releaseAs; this.releaseAs = options.releaseAs;
@@ -67600,7 +67604,7 @@ module.exports = JSON.parse("{\"_args\":[[\"pino@6.11.2\",\"/home/runner/work/re
/***/ ((module) => { /***/ ((module) => {
"use strict"; "use strict";
module.exports = JSON.parse("{\"i8\":\"11.3.0-candidate.0\"}"); module.exports = {"i8":"11.4.0"};
/***/ }), /***/ }),