Skip to content

Commit 1cc8396

Browse files
committed
Rebuild gh actions
1 parent 073c26e commit 1cc8396

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/actions/javascript/authorChecklist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15419,7 +15419,7 @@ async function detectReactComponentInFile(filename) {
1541915419
};
1542015420
try {
1542115421
const { data } = await GithubUtils_1.default.octokit.repos.getContent(params);
15422-
const content = nodeBase64ToUtf8('content' in data ? data?.content ?? '' : '');
15422+
const content = nodeBase64ToUtf8('content' in data ? (data?.content ?? '') : '');
1542315423
return detectReactComponent(content, filename);
1542415424
}
1542515425
catch (error) {

.github/actions/javascript/createOrUpdateStagingDeploy/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12321,7 +12321,7 @@ const replacer = (str) => ({
1232112321
'\r': '\\r',
1232212322
'\f': '\\f',
1232312323
'"': '\\"',
12324-
}[str] ?? '');
12324+
})[str] ?? '';
1232512325
/**
1232612326
* Replace any characters in the string that will break JSON.parse for our Git Log output
1232712327
*

.github/actions/javascript/getDeployPullRequestList/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12358,7 +12358,7 @@ const replacer = (str) => ({
1235812358
'\r': '\\r',
1235912359
'\f': '\\f',
1236012360
'"': '\\"',
12361-
}[str] ?? '');
12361+
})[str] ?? '';
1236212362
/**
1236312363
* Replace any characters in the string that will break JSON.parse for our Git Log output
1236412364
*

.github/actions/javascript/getPreviousVersion/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3018,7 +3018,7 @@ const replacer = (str) => ({
30183018
'\r': '\\r',
30193019
'\f': '\\f',
30203020
'"': '\\"',
3021-
}[str] ?? '');
3021+
})[str] ?? '';
30223022
/**
30233023
* Replace any characters in the string that will break JSON.parse for our Git Log output
30243024
*

0 commit comments

Comments
 (0)