Merge branch 'master' of https://github.com/backstage/backstage into minor-fixes

This commit is contained in:
Lykke Axlin
2022-01-11 16:09:37 +01:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -3,4 +3,4 @@
'@backstage/plugin-ilert': patch
---
build(deps): bump @date-io/luxon from 1.3.13 to 2.11.1
build(deps): bump `@date-io/luxon` from 1.3.13 to 2.11.1
@@ -34,7 +34,7 @@ jobs:
async function createChangeset(fileName, commitMessage, packages) {
const pkgs = packages.map(pkg => `'${pkg}': patch`).join('\n');
const message = commitMessage.replace(/(b|B)ump ([a-z-]+)/, 'Bump `$2`');
const message = commitMessage.replace(/([bB])ump ([\S]+)/, '$1ump `$2`');
const body = `---\n${pkgs}\n---\n\n${message}`;
await fs.writeFile(fileName, body);
}