File tree Expand file tree Collapse file tree
.github/actions/javascript/getPullRequestIncrementalChanges Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12869,7 +12869,7 @@ exports["default"] = Git;
1286912869"use strict";
1287012870
1287112871Object.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;
1287312873const COLOR_DIM = '\x1b[2m';
1287412874const COLOR_RESET = '\x1b[0m';
1287512875const COLOR_YELLOW = '\x1b[33m';
@@ -12918,6 +12918,11 @@ const error = (...args) => {
1291812918 log(...lines);
1291912919};
1292012920exports.error = error;
12921+ const errorDetail = (...args) => {
12922+ const lines = [` ${COLOR_RED}↳`, ...args, COLOR_RESET];
12923+ log(...lines);
12924+ };
12925+ exports.errorDetail = errorDetail;
1292112926const formatLink = (name, url) => `\x1b]8;;${url}\x1b\\${name}\x1b]8;;\x1b\\`;
1292212927exports.formatLink = formatLink;
1292312928
You can’t perform that action at this time.
0 commit comments