@@ -71346,6 +71346,7 @@ var __importStar = (this && this.__importStar) || (function () {
7134671346})();
7134771347Object.defineProperty(exports, "__esModule", ({ value: true }));
7134871348exports.resolveIdentity = resolveIdentity;
71349+ exports.buildSummaryMarkdown = buildSummaryMarkdown;
7134971350exports.getDefaultCommitRange = getDefaultCommitRange;
7135071351const core = __importStar(__nccwpck_require__(37484));
7135171352const exec = __importStar(__nccwpck_require__(95236));
@@ -71616,14 +71617,18 @@ function fixMessageForType(type, commit, failedCount) {
7161671617 switch (type) {
7161771618 case 'unsigned':
7161871619 return [
71619- `Commit ${commit.slice(0, 8)} is not signed.`,
71620+ `Commit ${commit.slice(0, 8)} is not signed. To sign future commits: `,
7162071621 ``,
71621- `Install auths:`,
71622- ` macOS: brew install auths`,
71623- ` Linux: See https://github.com/auths-dev/auths/releases/latest`,
71622+ `1. Install auths:`,
71623+ ` macOS: brew install auths`,
71624+ ` Linux: See https://github.com/auths-dev/auths/releases/latest`,
7162471625 ``,
71625- `Then re-sign and push:`,
71626- ` ${amendCmd}`,
71626+ `2. Set up signing:`,
71627+ ` auths init`,
71628+ ` auths git setup`,
71629+ ``,
71630+ `3. Re-sign and push:`,
71631+ ` ${amendCmd}`,
7162771632 ``,
7162871633 `Quickstart: https://github.com/auths-dev/auths#quickstart`,
7162971634 ].join('\n');
@@ -71689,13 +71694,23 @@ function buildSummaryMarkdown(results, passed, skipped, failed, total) {
7168971694 lines.push('');
7169071695 switch (dominantType) {
7169171696 case 'unsigned':
71692- lines.push(`Commit \`${firstFailed.commit.slice(0, 8)}\` is not signed. Install auths and re-sign:`);
71697+ lines.push(`Commit \`${firstFailed.commit.slice(0, 8)}\` is not signed. To sign future commits:`);
71698+ lines.push('');
71699+ lines.push('**1. Install auths**');
71700+ lines.push('');
71701+ lines.push('macOS: `brew install auths`');
71702+ lines.push('Linux: Download from [releases](https://github.com/auths-dev/auths/releases/latest)');
7169371703 lines.push('');
71694- lines.push('**macOS:** `brew install auths`');
71695- lines.push('**Linux:** Download from [releases](https://github.com/auths-dev/auths/releases/latest)');
71704+ lines.push('**2. Set up signing**');
7169671705 lines.push('');
71697- lines.push('Then re-sign:');
71706+ lines.push('```bash');
71707+ lines.push('auths init');
71708+ lines.push('auths git setup');
7169871709 lines.push('```');
71710+ lines.push('');
71711+ lines.push('**3. Re-sign and push**');
71712+ lines.push('');
71713+ lines.push('```bash');
7169971714 lines.push(amendCmd);
7170071715 lines.push('```');
7170171716 lines.push('');
0 commit comments