Use a stable NEXT_PUBLIC_VERCEL_BRANCH_URL for short links (#287)
* Use a stable `NEXT_PUBLIC_VERCEL_BRANCH_URL` for short links * Update JSDoc reference to NEXT_PUBLIC_VERCEL_BRANCH_URL --------- Co-authored-by: pullfrog[bot] <226033991+pullfrog[bot]@users.noreply.github.com>
This commit is contained in:
committed by
pullfrog[bot]
parent
a8dde34531
commit
267a4586ae
@@ -135596,7 +135596,7 @@ var isGitHubActions = !!process.env.GITHUB_ACTIONS;
|
|||||||
var isInsideDocker = existsSync("/.dockerenv");
|
var isInsideDocker = existsSync("/.dockerenv");
|
||||||
|
|
||||||
// utils/log.ts
|
// utils/log.ts
|
||||||
var isDebugEnabled = () => process.env.LOG_LEVEL === "debug" || process.env.ACTIONS_STEP_DEBUG === "true" || process.env.RUNNER_DEBUG === "1" || core.isDebug();
|
var isDebugEnabled = () => process.env.LOG_LEVEL === "debug" || process.env.ACTIONS_STEP_DEBUG === "true" || core.isDebug();
|
||||||
function formatArgs(args2) {
|
function formatArgs(args2) {
|
||||||
return args2.map((arg) => {
|
return args2.map((arg) => {
|
||||||
if (typeof arg === "string") return arg;
|
if (typeof arg === "string") return arg;
|
||||||
|
|||||||
@@ -25515,7 +25515,7 @@ var isGitHubActions = !!process.env.GITHUB_ACTIONS;
|
|||||||
var isInsideDocker = existsSync("/.dockerenv");
|
var isInsideDocker = existsSync("/.dockerenv");
|
||||||
|
|
||||||
// utils/log.ts
|
// utils/log.ts
|
||||||
var isDebugEnabled = () => process.env.LOG_LEVEL === "debug" || process.env.ACTIONS_STEP_DEBUG === "true" || process.env.RUNNER_DEBUG === "1" || core.isDebug();
|
var isDebugEnabled = () => process.env.LOG_LEVEL === "debug" || process.env.ACTIONS_STEP_DEBUG === "true" || core.isDebug();
|
||||||
function formatArgs(args) {
|
function formatArgs(args) {
|
||||||
return args.map((arg) => {
|
return args.map((arg) => {
|
||||||
if (typeof arg === "string") return arg;
|
if (typeof arg === "string") return arg;
|
||||||
|
|||||||
@@ -40983,7 +40983,7 @@ var isGitHubActions = !!process.env.GITHUB_ACTIONS;
|
|||||||
var isInsideDocker = existsSync("/.dockerenv");
|
var isInsideDocker = existsSync("/.dockerenv");
|
||||||
|
|
||||||
// utils/log.ts
|
// utils/log.ts
|
||||||
var isDebugEnabled = () => process.env.LOG_LEVEL === "debug" || process.env.ACTIONS_STEP_DEBUG === "true" || process.env.RUNNER_DEBUG === "1" || core.isDebug();
|
var isDebugEnabled = () => process.env.LOG_LEVEL === "debug" || process.env.ACTIONS_STEP_DEBUG === "true" || core.isDebug();
|
||||||
function formatArgs(args2) {
|
function formatArgs(args2) {
|
||||||
return args2.map((arg) => {
|
return args2.map((arg) => {
|
||||||
if (typeof arg === "string") return arg;
|
if (typeof arg === "string") return arg;
|
||||||
|
|||||||
+1
-4
@@ -7,10 +7,7 @@ import { table } from "table";
|
|||||||
import { isGitHubActions, isInsideDocker } from "./globals.ts";
|
import { isGitHubActions, isInsideDocker } from "./globals.ts";
|
||||||
|
|
||||||
const isDebugEnabled = () =>
|
const isDebugEnabled = () =>
|
||||||
process.env.LOG_LEVEL === "debug" ||
|
process.env.LOG_LEVEL === "debug" || process.env.ACTIONS_STEP_DEBUG === "true" || core.isDebug();
|
||||||
process.env.ACTIONS_STEP_DEBUG === "true" ||
|
|
||||||
process.env.RUNNER_DEBUG === "1" ||
|
|
||||||
core.isDebug();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Format arguments into a single string for logging
|
* Format arguments into a single string for logging
|
||||||
|
|||||||
Reference in New Issue
Block a user