Skip to content
Snippets Groups Projects
Commit 15faf0f1 authored by Rhys Arkins's avatar Rhys Arkins
Browse files

refactor(changelog): githubName -> repoName

parent e9adca52
No related merge requests found
......@@ -5,7 +5,7 @@ export default `### Release Notes
{{#if upgrade.hasReleaseNotes}}
<details>
<summary>{{upgrade.githubName}}</summary>
<summary>{{upgrade.repoName}}</summary>
{{#each upgrade.releases as |release|}}
......
......@@ -198,16 +198,16 @@ export async function ensurePr(
if (logJSON) {
if (typeof logJSON.error === 'undefined') {
if (logJSON.project) {
upgrade.githubName = logJSON.project.github;
upgrade.repoName = logJSON.project.github;
}
upgrade.hasReleaseNotes = logJSON.hasReleaseNotes;
upgrade.releases = [];
if (
upgrade.hasReleaseNotes &&
upgrade.githubName &&
!commitRepos.includes(upgrade.githubName)
upgrade.repoName &&
!commitRepos.includes(upgrade.repoName)
) {
commitRepos.push(upgrade.githubName);
commitRepos.push(upgrade.repoName);
if (logJSON.versions) {
logJSON.versions.forEach((version) => {
const release = { ...version };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment