From 0f77f61a02c5ff8a68c6018fcacdf84f2d2594b7 Mon Sep 17 00:00:00 2001 From: Michel Roegl-Brunner Date: Mon, 24 Mar 2025 13:02:39 +0100 Subject: [PATCH] Workflow Update --- .github/workflows/changelog-pr.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/changelog-pr.yaml b/.github/workflows/changelog-pr.yaml index 63f1648..b18bd7b 100644 --- a/.github/workflows/changelog-pr.yaml +++ b/.github/workflows/changelog-pr.yaml @@ -124,9 +124,12 @@ jobs: labels: ["Started Migration To ProxmoxVE"], per_page: 5 }); + console.log(`Related issues: ${JSON.stringify(relatedIssues, null, 2)}`); const matchingIssue = relatedIssues.find(issue => issue.title.toLowerCase().includes(scriptName.toLowerCase()) + ); + console.log(`Matching issue: ${JSON.stringify(matchingIssue, null, 2)}`); if (matchingIssue) { const issueAuthor = matchingIssue.user.login; const issueAuthorUrl = `https://github.com/${issueAuthor}`;