Adding guard checks.
This commit is contained in:
+14
-5
@@ -93626,11 +93626,11 @@ async function getCommitDiff(commitSha) {
|
|||||||
);
|
);
|
||||||
const diff2 = response.data ?? "";
|
const diff2 = response.data ?? "";
|
||||||
if (!diff2) {
|
if (!diff2) {
|
||||||
core.warning(`No diff data for commit ${commitSha}`);
|
core.warning(`\u26A0\uFE0F No diff returned for commit ${commitSha}`);
|
||||||
}
|
}
|
||||||
return { sha: commitSha, diff: diff2 };
|
return { sha: commitSha, diff: diff2 };
|
||||||
} catch (error2) {
|
} catch (error2) {
|
||||||
core.error(`Error fetching Gitea/Forgejo diff for ${commitSha}: ${error2}`);
|
core.error(`Failed to fetch Gitea/Forgejo commit diff for ${commitSha}: ${error2}`);
|
||||||
throw error2;
|
throw error2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -93640,12 +93640,14 @@ async function getCommitDiff(commitSha) {
|
|||||||
owner,
|
owner,
|
||||||
repo,
|
repo,
|
||||||
ref: commitSha,
|
ref: commitSha,
|
||||||
headers: { Accept: "application/vnd.github.v3.diff" }
|
headers: {
|
||||||
|
Accept: "application/vnd.github.v3.diff"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
const diff = diffResponse.data ?? "";
|
const diff = diffResponse.data ?? "";
|
||||||
if (!diff) {
|
if (!diff) {
|
||||||
core.warning(`No diff data from GitHub for commit ${commitSha}`);
|
core.warning(`\u26A0\uFE0F No diff returned from GitHub for commit ${commitSha}`);
|
||||||
}
|
}
|
||||||
return { sha: commitSha, diff };
|
return { sha: commitSha, diff };
|
||||||
}
|
}
|
||||||
@@ -93715,7 +93717,14 @@ async function improveCommitMessages(commitsToImprove) {
|
|||||||
const commitSHAsToImprove = filteredCommits.map((commit) => commit.id);
|
const commitSHAsToImprove = filteredCommits.map((commit) => commit.id);
|
||||||
const diffsWithSHAs = await getDiffsBySHAs(commitSHAsToImprove);
|
const diffsWithSHAs = await getDiffsBySHAs(commitSHAsToImprove);
|
||||||
ce("Done.");
|
ce("Done.");
|
||||||
const improvedMessagesWithSHAs = await improveMessagesInChunks(diffsWithSHAs);
|
const validDiffsWithSHAs = diffsWithSHAs.filter(
|
||||||
|
(item) => typeof item.diff === "string" && item.diff.length > 0
|
||||||
|
);
|
||||||
|
if (validDiffsWithSHAs.length === 0) {
|
||||||
|
ce("No valid diffs received; skipping improvement step.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const improvedMessagesWithSHAs = await improveMessagesInChunks(validDiffsWithSHAs);
|
||||||
console.log(
|
console.log(
|
||||||
`Improved ${improvedMessagesWithSHAs.length} commit messages`
|
`Improved ${improvedMessagesWithSHAs.length} commit messages`
|
||||||
);
|
);
|
||||||
|
|||||||
+19
-5
@@ -50,29 +50,32 @@ async function getCommitDiff(commitSha: string): Promise<{ sha: SHA; diff: Diff
|
|||||||
|
|
||||||
const diff = response.data ?? '';
|
const diff = response.data ?? '';
|
||||||
if (!diff) {
|
if (!diff) {
|
||||||
core.warning(`No diff data for commit ${commitSha}`);
|
core.warning(`⚠️ No diff returned for commit ${commitSha}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
return { sha: commitSha, diff };
|
return { sha: commitSha, diff };
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
core.error(`Error fetching Gitea/Forgejo diff for ${commitSha}: ${error}`);
|
core.error(`Failed to fetch Gitea/Forgejo commit diff for ${commitSha}: ${error}`);
|
||||||
throw error;
|
throw error;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GitHub path unchanged
|
||||||
const diffResponse = await octokit.request<string>(
|
const diffResponse = await octokit.request<string>(
|
||||||
'GET /repos/{owner}/{repo}/commits/{ref}',
|
'GET /repos/{owner}/{repo}/commits/{ref}',
|
||||||
{
|
{
|
||||||
owner,
|
owner,
|
||||||
repo,
|
repo,
|
||||||
ref: commitSha,
|
ref: commitSha,
|
||||||
headers: { Accept: 'application/vnd.github.v3.diff' },
|
headers: {
|
||||||
|
Accept: 'application/vnd.github.v3.diff',
|
||||||
|
},
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
const diff = diffResponse.data ?? '';
|
const diff = diffResponse.data ?? '';
|
||||||
if (!diff) {
|
if (!diff) {
|
||||||
core.warning(`No diff data from GitHub for commit ${commitSha}`);
|
core.warning(`⚠️ No diff returned from GitHub for commit ${commitSha}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
return { sha: commitSha, diff };
|
return { sha: commitSha, diff };
|
||||||
@@ -175,7 +178,18 @@ async function improveCommitMessages(
|
|||||||
const diffsWithSHAs = await getDiffsBySHAs(commitSHAsToImprove);
|
const diffsWithSHAs = await getDiffsBySHAs(commitSHAsToImprove);
|
||||||
outro('Done.');
|
outro('Done.');
|
||||||
|
|
||||||
const improvedMessagesWithSHAs = await improveMessagesInChunks(diffsWithSHAs);
|
// 🛡️ FILTER OUT EMPTY Diffs
|
||||||
|
const validDiffsWithSHAs = diffsWithSHAs.filter(
|
||||||
|
(item) => typeof item.diff === 'string' && item.diff.length > 0
|
||||||
|
);
|
||||||
|
|
||||||
|
if (validDiffsWithSHAs.length === 0) {
|
||||||
|
outro('No valid diffs received; skipping improvement step.');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Proceed with non-null diffs
|
||||||
|
const improvedMessagesWithSHAs = await improveMessagesInChunks(validDiffsWithSHAs);
|
||||||
console.log(
|
console.log(
|
||||||
`Improved ${improvedMessagesWithSHAs.length} commit messages`
|
`Improved ${improvedMessagesWithSHAs.length} commit messages`
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user