Skip to content

Commit ceed278

Browse files
committed
Rebuild gh actions
1 parent 5083cb9 commit ceed278

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

  • .github/actions/javascript/getPullRequestIncrementalChanges

.github/actions/javascript/getPullRequestIncrementalChanges/index.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12869,7 +12869,7 @@ exports["default"] = Git;
1286912869
"use strict";
1287012870

1287112871
Object.defineProperty(exports, "__esModule", ({ value: true }));
12872-
exports.bold = exports.formatLink = exports.success = exports.error = exports.note = exports.warn = exports.info = exports.log = void 0;
12872+
exports.bold = exports.formatLink = exports.success = exports.errorDetail = exports.error = exports.note = exports.warn = exports.info = exports.log = void 0;
1287312873
const COLOR_DIM = '\x1b[2m';
1287412874
const COLOR_RESET = '\x1b[0m';
1287512875
const COLOR_YELLOW = '\x1b[33m';
@@ -12918,6 +12918,11 @@ const error = (...args) => {
1291812918
log(...lines);
1291912919
};
1292012920
exports.error = error;
12921+
const errorDetail = (...args) => {
12922+
const lines = [` ${COLOR_RED}↳`, ...args, COLOR_RESET];
12923+
log(...lines);
12924+
};
12925+
exports.errorDetail = errorDetail;
1292112926
const formatLink = (name, url) => `\x1b]8;;${url}\x1b\\${name}\x1b]8;;\x1b\\`;
1292212927
exports.formatLink = formatLink;
1292312928

0 commit comments

Comments
 (0)