Skip to content

Commit

Permalink
fix: Changelog escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
nlemoine committed Nov 14, 2024
1 parent b28fe8a commit cf8e78b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/composer-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:
const packageDiff = await getPackageDiff(pack);
markDown.push(...packageDiff);
}
return markDown.join('\n');
return markDown.join('\n').replace(/"/g, '\\"');
}
return run(composerDiff);
Expand Down

0 comments on commit cf8e78b

Please sign in to comment.