Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
convert unused expression to statement
  • Loading branch information
mikeharder committed Jul 24, 2025
commit 8862c262e37cd4fdde846883f1fe2fe6922bb445
4 changes: 3 additions & 1 deletion .github/workflows/src/context.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// @ts-check

import { PER_PAGE_MAX } from "./github.js";
Expand Down Expand Up @@ -25,7 +25,9 @@

// Log full context when debug is enabled. Most workflows should be idempotent and can be re-run
// with debug enabled to replay the previous context.
core.isDebug() && core.debug(`context: ${JSON.stringify(context)}`);
if (core.isDebug()) {
core.debug(`context: ${JSON.stringify(context)}`);
}

/** @type {{ owner: string, repo: string, head_sha: string, issue_number: number, run_id: number, details_url?: string }} */
let inputs;
Expand Down
Loading