We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1baa215 commit bbf7ba7Copy full SHA for bbf7ba7
.changeset/changelog-config.js
@@ -1,4 +1,4 @@
1
-// 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
2
3
const getReleaseLine = async (changeset) => {
4
const [firstLine] = changeset.summary
@@ -12,14 +12,9 @@ const getDependencyReleaseLine = async () => {
12
return '';
13
};
14
15
-const getReleaseSummary = async (release) => {
16
- return `## [${release.newVersion}]\n\n`;
17
-};
18
-
19
const changelogFunctions = {
20
getReleaseLine,
21
getDependencyReleaseLine,
22
- getReleaseSummary,
23
24
25
module.exports = changelogFunctions;
0 commit comments