From 267a4586aecad42d63a3885a35db75e40d132426 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Burzy=C5=84ski?= Date: Fri, 13 Feb 2026 12:27:27 +0000 Subject: [PATCH] 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> --- entry | 2 +- get-installation-token/entry | 2 +- post | 2 +- utils/log.ts | 5 +---- 4 files changed, 4 insertions(+), 7 deletions(-) diff --git a/entry b/entry index a6b413c..fbb1e7d 100755 --- a/entry +++ b/entry @@ -135596,7 +135596,7 @@ var isGitHubActions = !!process.env.GITHUB_ACTIONS; var isInsideDocker = existsSync("/.dockerenv"); // 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) { return args2.map((arg) => { if (typeof arg === "string") return arg; diff --git a/get-installation-token/entry b/get-installation-token/entry index 9484c95..b7fdf10 100755 --- a/get-installation-token/entry +++ b/get-installation-token/entry @@ -25515,7 +25515,7 @@ var isGitHubActions = !!process.env.GITHUB_ACTIONS; var isInsideDocker = existsSync("/.dockerenv"); // 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) { return args.map((arg) => { if (typeof arg === "string") return arg; diff --git a/post b/post index b0ded0c..aa0dcc9 100755 --- a/post +++ b/post @@ -40983,7 +40983,7 @@ var isGitHubActions = !!process.env.GITHUB_ACTIONS; var isInsideDocker = existsSync("/.dockerenv"); // 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) { return args2.map((arg) => { if (typeof arg === "string") return arg; diff --git a/utils/log.ts b/utils/log.ts index 21bd424..9410fd1 100644 --- a/utils/log.ts +++ b/utils/log.ts @@ -7,10 +7,7 @@ import { table } from "table"; import { isGitHubActions, isInsideDocker } from "./globals.ts"; const isDebugEnabled = () => - process.env.LOG_LEVEL === "debug" || - process.env.ACTIONS_STEP_DEBUG === "true" || - process.env.RUNNER_DEBUG === "1" || - core.isDebug(); + process.env.LOG_LEVEL === "debug" || process.env.ACTIONS_STEP_DEBUG === "true" || core.isDebug(); /** * Format arguments into a single string for logging