Skip to content

Commit 1c998f6

Browse files
committed
@W-17330636@ Integrated feedback from code review
1 parent 75a8beb commit 1c998f6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/publish-package-to-npm/update-dependencies-on-released-packages.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function displayMapOfLists(header, mapOfLists) {
2222
for (const [key, innerList] of mapOfLists.entries()) {
2323
console.log(`IN ${key}:`);
2424
for (const innerListItem of innerList) {
25-
console.log(`- ${innerListItem}`);
25+
console.log(`* ${innerListItem}`);
2626
}
2727
console.log('');
2828
}

.github/workflows/publish-package-to-npm/validate-packages-as-releasable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function main() {
2525
function displayList(header, list) {
2626
console.log(header);
2727
for (const listItem of list) {
28-
console.log(`- ${listItem}`);
28+
console.log(`* ${listItem}`);
2929
}
3030
console.log('\n');
3131
}

.github/workflows/verify-pr/validate-changed-package-versions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function main() {
3333
function displayList(header, list) {
3434
console.log(header);
3535
for (const listItem of list) {
36-
console.log(`- ${listItem}`);
36+
console.log(`* ${listItem}`);
3737
}
3838
console.log('');
3939
}

.github/workflows/verify-pr/validate-package-interdependencies.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ function main() {
2020
function displayList(header, list) {
2121
console.log(header);
2222
for (const listItem of list) {
23-
console.log(`- ${listItem}`);
23+
console.log(`* ${listItem}`);
2424
}
2525
console.log('');
2626
}

0 commit comments

Comments
 (0)