Skip to content

Commit 49d0024

Browse files
authored
Add .yml extension to RELEASE_SPEC file (#83)
Add .yml extension to RELEASE_SPEC file
1 parent a391815 commit 49d0024

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

src/functional.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,7 @@ The release spec file has been retained for you to edit again and make the neces
673673
{
674674
replacements: [
675675
{
676-
from: `${environment.tempDirectoryPath}/RELEASE_SPEC`,
676+
from: `${environment.tempDirectoryPath}/RELEASE_SPEC.yml`,
677677
to: '<<release-spec-file-path>>',
678678
},
679679
],

src/monorepo-workflow-operations.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ async function setupFollowMonorepoWorkflow({
185185
const editor = buildMockEditor();
186186
const releaseSpecificationPath = path.join(
187187
sandbox.directoryPath,
188-
'RELEASE_SPEC',
188+
'RELEASE_SPEC.yml',
189189
);
190190
const releaseSpecification = buildMockReleaseSpecification({
191191
path: releaseSpecificationPath,

src/monorepo-workflow-operations.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,10 @@ export async function followMonorepoWorkflow({
6464
stdout: Pick<WriteStream, 'write'>;
6565
stderr: Pick<WriteStream, 'write'>;
6666
}) {
67-
const releaseSpecificationPath = path.join(tempDirectoryPath, 'RELEASE_SPEC');
67+
const releaseSpecificationPath = path.join(
68+
tempDirectoryPath,
69+
'RELEASE_SPEC.yml',
70+
);
6871

6972
if (
7073
!firstRemovingExistingReleaseSpecification &&

0 commit comments

Comments
 (0)