Browse Source

PR comments

a8trejo 1 year ago
parent
commit
bbf7ba7995
1 changed files with 1 additions and 6 deletions
  1. 1 6
      .changeset/changelog-config.js

+ 1 - 6
.changeset/changelog-config.js

@@ -1,4 +1,4 @@
-// Doesn't fully work but '.github/scripts/overwrite_changeset_changelog.py' forces the changelog to be formatted in GHA
+// Half-works to simplify the format but needs 'overwrite_changeset_changelog.py' in GHA to finish formatting
 
 const getReleaseLine = async (changeset) => {
   const [firstLine] = changeset.summary
@@ -12,14 +12,9 @@ const getDependencyReleaseLine = async () => {
   return '';
 };
 
-const getReleaseSummary = async (release) => {
-  return `## [${release.newVersion}]\n\n`;
-};
-
 const changelogFunctions = {
   getReleaseLine,
   getDependencyReleaseLine,
-  getReleaseSummary,
 };
 
 module.exports = changelogFunctions;