Add try-catch & Error Logging in Github Actions Auto Close Issues

This commit is contained in:
Mr.k 2024-04-04 16:20:18 +03:00
parent 9d1fae7917
commit 9978758327
No known key found for this signature in database

View File

@ -41,6 +41,7 @@ jobs:
const closeIssue = true;
// Get all Labels of issue, and compared each label with the labelKeepIssue const variable
try {
const respondIssueLabels = await octokit.request("GET /repos/{owner}/{repo}/issues/{issue_number}/labels", {
owner: owner,
repo: repo,
@ -55,6 +56,9 @@ jobs:
closeIssue = false;
}
}
} catch (error) {
console.error(`Error while Fetching Labels for Issue #${issue.number}, Error: ${error}`);
}
if (!closeIssue) {
continue; // Skip the next bit of code