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

Commit

Permalink
chore: build dist (#764)
Browse files Browse the repository at this point in the history
Build dist PR

Co-authored-by: Jeff Ching <[email protected]>
  • Loading branch information
google-github-actions-bot and chingor13 authored May 25, 2023
1 parent b5e4ec3 commit 221cfd7
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -87965,7 +87965,6 @@ class Manifest {
break;
}
}
const needsBootstrap = releasesFound < expectedReleases;
if (releasesFound < expectedReleases) {
this.logger.warn(`Expected ${expectedReleases} releases, only found ${releasesFound}`);
// Fall back to looking for missing releases using expected tags
Expand All @@ -87978,6 +87977,7 @@ class Manifest {
releasesFound++;
}
}
const needsBootstrap = releasesFound < expectedReleases;
if (releasesFound < expectedReleases) {
this.logger.warn(`Expected ${expectedReleases} releases, only found ${releasesFound}`);
}
Expand Down Expand Up @@ -88660,19 +88660,23 @@ async function latestReleaseVersion(github, targetBranch, releaseFilter, config,
commitShas.add(commitWithPullRequest.sha);
const mergedPullRequest = commitWithPullRequest.pullRequest;
if (!mergedPullRequest) {
logger.trace(`skipping commit: ${commitWithPullRequest.sha} missing merged pull request`);
continue;
}
const branchName = branch_name_1.BranchName.parse(mergedPullRequest.headBranchName, logger);
if (!branchName) {
logger.trace(`skipping commit: ${commitWithPullRequest.sha} unrecognized branch name: ${mergedPullRequest.headBranchName}`);
continue;
}
// If branchPrefix is specified, ensure it is found in the branch name.
// If branchPrefix is not specified, component should also be undefined.
if (branchName.getComponent() !== branchPrefix) {
logger.trace(`skipping commit: ${commitWithPullRequest.sha} branch component ${branchName.getComponent()} doesn't match expected prefix: ${branchPrefix}`);
continue;
}
const pullRequestTitle = pull_request_title_1.PullRequestTitle.parse(mergedPullRequest.title, config.pullRequestTitlePattern, logger);
if (!pullRequestTitle) {
logger.trace(`skipping commit: ${commitWithPullRequest.sha} couldn't parse pull request title: ${mergedPullRequest.title}`);
continue;
}
const version = pullRequestTitle.getVersion();
Expand Down Expand Up @@ -119671,7 +119675,7 @@ module.exports = {};
/***/ ((module) => {

"use strict";
module.exports = {"i8":"15.10.2"};
module.exports = {"i8":"15.10.4"};

/***/ }),

Expand Down

0 comments on commit 221cfd7

Please sign in to comment.