Skip to content

Commit

Permalink
fix(changelogmarkdown): do not print date
Browse files Browse the repository at this point in the history
This flag is especially used during dryruns, so there is no need to print the release dates
  • Loading branch information
azlam-abdulsalam committed Sep 5, 2023
1 parent c915a5c commit bbee5b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default class ChangelogMarkdownGenerator {
payload += `\n<a id=${release.hashId}></a>\n`; // Create anchor from release hash Id
payload += `# ${release.names.join(`/`)}\n `;
payload += `Cumulative Release Number: <b>${release.buildNumber}</b> \n\n`;
if(release.date)
if(release.date && !this.isForWorkItemOnlyOutput)
payload += `Matching defintion first created or deployed to an org on: ${release.date}\n `

}
Expand Down

0 comments on commit bbee5b5

Please sign in to comment.