Fix job id

This commit is contained in:
Mark Wylde
2025-05-31 09:26:06 +01:00
parent e5b2574f8c
commit 5c040da573
5 changed files with 36 additions and 24 deletions

View File

@@ -32,7 +32,7 @@ async function run() {
const client = createClient(githubToken);
const serverUrl = GITEA_SERVER_URL;
const jobUrl = `${serverUrl}/${owner}/${repo}/actions/runs/${process.env.GITHUB_RUN_ID}`;
const jobUrl = `${serverUrl}/${owner}/${repo}/actions/runs/${process.env.GITHUB_RUN_NUMBER}`;
let comment;
let isPRReviewComment = false;